|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <groupId>com.oracle.jdbc</groupId> |
| 5 | + <artifactId>HRWebSamples</artifactId> |
| 6 | + <packaging>war</packaging> |
| 7 | + <version>1.0-SNAPSHOT</version> |
| 8 | + <name>HR WebSamples Maven Webapp</name> |
| 9 | + <url>http://maven.apache.org</url> |
| 10 | + <dependencies> |
| 11 | + <!-- http://mvnrepository.com/artifact/javax.servlet/javax.servlet-api --> |
| 12 | + <dependency> |
| 13 | + <groupId>javax.servlet</groupId> |
| 14 | + <artifactId>javax.servlet-api</artifactId> |
| 15 | + <version>3.1.0</version> |
| 16 | + </dependency> |
| 17 | + |
| 18 | + <!-- http://mvnrepository.com/artifact/com.google.code.gson/gson --> |
| 19 | + <dependency> |
| 20 | + <groupId>com.google.code.gson</groupId> |
| 21 | + <artifactId>gson</artifactId> |
| 22 | + <version>2.5</version> |
| 23 | + </dependency> |
| 24 | + |
| 25 | + |
| 26 | + <dependency> |
| 27 | + <groupId>junit</groupId> |
| 28 | + <artifactId>junit</artifactId> |
| 29 | + <version>3.8.1</version> |
| 30 | + <scope>test</scope> |
| 31 | + </dependency> |
| 32 | + <dependency> |
| 33 | + <groupId>com.oracle.jdbc</groupId> |
| 34 | + <artifactId>ojdbc8</artifactId> |
| 35 | + <version>12.2.0.1</version> |
| 36 | + </dependency> |
| 37 | + </dependencies> |
| 38 | + <build> |
| 39 | + <finalName>HRWebSamples</finalName> |
| 40 | + <plugins> |
| 41 | + <plugin> |
| 42 | + <groupId>org.apache.maven.plugins</groupId> |
| 43 | + <artifactId>maven-compiler-plugin</artifactId> |
| 44 | + <version>3.5.1</version> |
| 45 | + <configuration> |
| 46 | + <source>1.8</source> |
| 47 | + <target>1.8</target> |
| 48 | + </configuration> |
| 49 | + </plugin> |
| 50 | + </plugins> |
| 51 | + </build> |
| 52 | + |
| 53 | + |
| 54 | + <profiles> |
| 55 | + <profile> |
| 56 | + <id>repos-artifactory</id> |
| 57 | + <activation> |
| 58 | + <activeByDefault>true</activeByDefault> |
| 59 | + </activation> |
| 60 | + <repositories> |
| 61 | + <repository> |
| 62 | + <id>oracle-artifactory</id> |
| 63 | + <url>https://artifactory.oraclecorp.com/artifactory/bigdata-dev-local</url> |
| 64 | + <snapshots> |
| 65 | + <enabled>true</enabled> |
| 66 | + </snapshots> |
| 67 | + </repository> |
| 68 | + </repositories> |
| 69 | + </profile> |
| 70 | + </profiles> |
| 71 | + |
| 72 | +</project> |
0 commit comments