mirror of
https://github.com/russ-p/sqlbuilder.git
synced 2025-12-13 16:54:24 +00:00
All checks were successful
continuous-integration/drone/push Build is passing
Bump junit from 4.12 to 4.13.1
61 lines
1.5 KiB
XML
61 lines
1.5 KiB
XML
<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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.github.russ-p</groupId>
|
|
<artifactId>sqlbuilder</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>sqlbuilder</name>
|
|
<url>http://maven.apache.org</url>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<java.version>1.8</java.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.13.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.h2database</groupId>
|
|
<artifactId>h2</artifactId>
|
|
<version>1.4.194</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>${java.version}</source>
|
|
<target>${java.version}</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>${deployment.releases.id}</id>
|
|
<name>Releases</name>
|
|
<url>${deployment.releases.url}</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>${deployment.snapshots.id}</id>
|
|
<name>Snapshots</name>
|
|
<url>${deployment.snapshots.url}</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
|
|
</project>
|