|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 |
| 4 | + http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + |
| 7 | + <groupId>ca.credativ.spring.jdbc</groupId> |
| 8 | + <artifactId>ca-credativ-spring-jdbc</artifactId> |
| 9 | + <version>1.0-SNAPSHOT</version> |
| 10 | + <packaging>jar</packaging> |
| 11 | + |
| 12 | + <name>ca-credativ-spring-jdbc</name> |
| 13 | + <url>http://maven.apache.org</url> |
| 14 | + |
| 15 | + <properties> |
| 16 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 17 | + <!-- Define Spring version as a constant --> |
| 18 | + <spring.version>3.2.7.RELEASE</spring.version> |
| 19 | + </properties> |
| 20 | + |
| 21 | + <dependencies> |
| 22 | + |
| 23 | + <dependency> |
| 24 | + <groupId>org.springframework</groupId> |
| 25 | + <artifactId>spring-core</artifactId> |
| 26 | + <version>${spring.version}</version> |
| 27 | + </dependency> |
| 28 | + |
| 29 | + <dependency> |
| 30 | + <groupId>org.springframework</groupId> |
| 31 | + <artifactId>spring-context</artifactId> |
| 32 | + <version>${spring.version}</version> |
| 33 | + </dependency> |
| 34 | + |
| 35 | + <dependency> |
| 36 | + <groupId>org.springframework</groupId> |
| 37 | + <artifactId>spring-tx</artifactId> |
| 38 | + <version>${spring.version}</version> |
| 39 | + </dependency> |
| 40 | + |
| 41 | + <dependency> |
| 42 | + <groupId>org.springframework</groupId> |
| 43 | + <artifactId>spring-jdbc</artifactId> |
| 44 | + <version>${spring.version}</version> |
| 45 | + </dependency> |
| 46 | + |
| 47 | + <dependency> |
| 48 | + <groupId>org.springframework</groupId> |
| 49 | + <artifactId>spring-test</artifactId> |
| 50 | + <version>${spring.version}</version> |
| 51 | + </dependency> |
| 52 | + |
| 53 | + <dependency> |
| 54 | + <groupId>commons-dbcp</groupId> |
| 55 | + <artifactId>commons-dbcp</artifactId> |
| 56 | + <version>1.2.2</version> |
| 57 | + </dependency> |
| 58 | + |
| 59 | + <dependency> |
| 60 | + <groupId>org.postgresql</groupId> |
| 61 | + <artifactId>postgresql</artifactId> |
| 62 | + <version>9.3-1100-jdbc41</version> |
| 63 | + </dependency> |
| 64 | + <dependency> |
| 65 | + <groupId>junit</groupId> |
| 66 | + <artifactId>junit-dep</artifactId> |
| 67 | + <version>4.10</version> |
| 68 | + <scope>test</scope> |
| 69 | + </dependency> |
| 70 | + |
| 71 | + </dependencies> |
| 72 | + <build> |
| 73 | + <plugins> |
| 74 | + <plugin> |
| 75 | + <groupId>org.apache.maven.plugins</groupId> |
| 76 | + <artifactId>maven-compiler-plugin</artifactId> |
| 77 | + <configuration> |
| 78 | + <source>1.7</source> |
| 79 | + <target>1.7</target> |
| 80 | + </configuration> |
| 81 | + </plugin> |
| 82 | + </plugins> |
| 83 | + </build> |
| 84 | +</project> |
0 commit comments