|
| 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/xsd/maven-4.0.0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <artifactId>core-java-9</artifactId> |
| 5 | + <version>0.2-SNAPSHOT</version> |
| 6 | + <name>core-java-9</name> |
| 7 | + |
| 8 | + <parent> |
| 9 | + <groupId>com.baeldung</groupId> |
| 10 | + <artifactId>parent-modules</artifactId> |
| 11 | + <version>1.0.0-SNAPSHOT</version> |
| 12 | + <relativePath>../../</relativePath> |
| 13 | + </parent> |
| 14 | + |
| 15 | + <dependencies> |
| 16 | + <dependency> |
| 17 | + <groupId>com.jayway.awaitility</groupId> |
| 18 | + <artifactId>awaitility</artifactId> |
| 19 | + <version>${awaitility.version}</version> |
| 20 | + <scope>test</scope> |
| 21 | + </dependency> |
| 22 | + <dependency> |
| 23 | + <groupId>org.assertj</groupId> |
| 24 | + <artifactId>assertj-core</artifactId> |
| 25 | + <version>${assertj.version}</version> |
| 26 | + <scope>test</scope> |
| 27 | + </dependency> |
| 28 | + <dependency> |
| 29 | + <groupId>com.google.guava</groupId> |
| 30 | + <artifactId>guava</artifactId> |
| 31 | + <version>${guava.version}</version> |
| 32 | + </dependency> |
| 33 | + <dependency> |
| 34 | + <groupId>org.junit.platform</groupId> |
| 35 | + <artifactId>junit-platform-runner</artifactId> |
| 36 | + <version>${junit.platform.version}</version> |
| 37 | + <scope>test</scope> |
| 38 | + </dependency> |
| 39 | + </dependencies> |
| 40 | + |
| 41 | + <build> |
| 42 | + <finalName>core-java-9</finalName> |
| 43 | + <plugins> |
| 44 | + <plugin> |
| 45 | + <groupId>org.apache.maven.plugins</groupId> |
| 46 | + <artifactId>maven-compiler-plugin</artifactId> |
| 47 | + <version>${maven-compiler-plugin.version}</version> |
| 48 | + <configuration> |
| 49 | + <source>${maven.compiler.source}</source> |
| 50 | + <target>${maven.compiler.target}</target> |
| 51 | + </configuration> |
| 52 | + </plugin> |
| 53 | + </plugins> |
| 54 | + </build> |
| 55 | + |
| 56 | + <pluginRepositories> |
| 57 | + <pluginRepository> |
| 58 | + <id>apache.snapshots</id> |
| 59 | + <url>http://repository.apache.org/snapshots/</url> |
| 60 | + </pluginRepository> |
| 61 | + </pluginRepositories> |
| 62 | + |
| 63 | + <properties> |
| 64 | + <!-- testing --> |
| 65 | + <assertj.version>3.10.0</assertj.version> |
| 66 | + <junit.platform.version>1.2.0</junit.platform.version> |
| 67 | + <awaitility.version>1.7.0</awaitility.version> |
| 68 | + <maven.compiler.source>1.9</maven.compiler.source> |
| 69 | + <maven.compiler.target>1.9</maven.compiler.target> |
| 70 | + <guava.version>25.1-jre</guava.version> |
| 71 | + </properties> |
| 72 | + |
| 73 | +</project> |
0 commit comments