pom.xml
| 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>org.example</groupId> |
| 5 |
<artifactId>untitled</artifactId> |
| 6 |
<version>1.0-SNAPSHOT</version> |
| 7 |
<name>Archetype - untitled</name> |
| 8 |
<url>http://maven.apache.org</url> |
| 9 |
<dependencies>
|
| 10 |
<dependency>
|
| 11 |
<groupId>org.postgresql</groupId> |
| 12 |
<artifactId>postgresql</artifactId> |
| 13 |
<version>42.7.1</version> |
| 14 |
</dependency>
|
| 15 |
<dependency>
|
| 16 |
<groupId>com.mchange</groupId> |
| 17 |
<artifactId>c3p0</artifactId> |
| 18 |
<version>0.9.5.5</version> |
| 19 |
</dependency>
|
| 20 |
</dependencies>
|
| 21 |
<build>
|
| 22 |
<plugins>
|
| 23 |
<plugin>
|
| 24 |
<groupId>org.apache.maven.plugins</groupId> |
| 25 |
<artifactId>maven-compiler-plugin</artifactId> |
| 26 |
<configuration>
|
| 27 |
<source>9</source> |
| 28 |
<target>9</target> |
| 29 |
</configuration>
|
| 30 |
</plugin>
|
| 31 |
</plugins>
|
| 32 |
</build>
|
| 33 |
</project>
|