Advertisement
Guest User

Spring 3.2.7 Jars

a guest
Jan 22nd, 2014
2,572
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.67 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2.   <modelVersion>4.0.0</modelVersion>
  3.   <groupId>spring-source-download</groupId>
  4.   <artifactId>SpringDependencies</artifactId>
  5.   <version>1.0</version>
  6.   <properties>
  7.     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  8.   </properties>
  9.   <dependencies>
  10.     <dependency>
  11.         <groupId>org.springframework</groupId>
  12.         <artifactId>spring-context</artifactId>
  13.         <version>3.2.7.BUILD-SNAPSHOT</version>
  14.     </dependency>
  15.   </dependencies>
  16.   <repositories>
  17.     <repository>
  18.         <id>spring-snapshots</id>
  19.         <name>Spring Snapshots</name>
  20.         <url>http://repo.spring.io/snapshot</url>
  21.         <snapshots>
  22.             <enabled>true</enabled>
  23.         </snapshots>
  24.     </repository>
  25.   </repositories>
  26.   <build>
  27.     <plugins>
  28.       <plugin>
  29.         <groupId>org.apache.maven.plugins</groupId>
  30.           <artifactId>maven-dependency-plugin</artifactId>
  31.             <version>2.8</version>
  32.             <executions>
  33.               <execution>
  34.                 <id>download-dependencies</id>
  35.                   <phase>generate-resources</phase>
  36.                     <goals>
  37.                       <goal>copy-dependencies</goal>
  38.                     </goals>
  39.                     <configuration>
  40.                       <outputDirectory> ${project.build.directory}/dependencies </outputDirectory>
  41.                     </configuration>
  42.               </execution>
  43.             </executions>
  44.       </plugin>
  45.     </plugins>
  46.   </build>
  47. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement