Skip to content

Commit

Permalink
Push from SCM (2023-03-27)
Browse files Browse the repository at this point in the history
  • Loading branch information
locke-chappel committed Mar 27, 2023
1 parent a57df1a commit 2fc466c
Showing 1 changed file with 87 additions and 89 deletions.
176 changes: 87 additions & 89 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,89 +1,87 @@
<?xml version="1.0"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.github.locke-chappel.oss.commons</groupId>
<artifactId>parent</artifactId>
<version>1.0.1</version>
</parent>

<artifactId>jpa</artifactId>
<version>1.0.1</version>
<name>${project.artifactId}</name>
<description>A collection of JPA extensions to assist with building complex queries</description>
<url>https://github.com/locke-chappel/oss-commons-jpa</url>

<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>

<developers>
<developer>
<id>locke-chappel</id>
<name>Locke-Chappel</name>
</developer>
</developers>

<issueManagement>
<system>GitHub</system>
<url>https://github.com/locke-chappel/oss-commons-jpa/issues</url>
</issueManagement>

<scm>
<connection>scm:git:git://github.com/locke-chappel/oss-commons-jpa.git</connection>
<developerConnection>scm:git:ssh://github.com:locke-chappel/oss-commons-jpa.git</developerConnection>
<url>https://github.com/locke-chappel/oss-commons-jpa</url>
</scm>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>serialization</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>util</artifactId>
</dependency>

<dependency>
<groupId>org.hibernate.orm</groupId>
<artifactId>hibernate-core</artifactId>
<version>${org.hibernate.version}</version>
</dependency>

<!-- Testing -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>testing</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>
--add-opens io.github.lc.oss.commons.jpa/io.github.lc.oss.commons.jpa=ALL-UNNAMED
${JacocoArgs}
</argLine>
</configuration>
</plugin>
</plugins>
</build>
</project>
<?xml version="1.0"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.github.locke-chappel.oss.commons</groupId>
<artifactId>parent</artifactId>
<version>1.0.2</version>
</parent>

<artifactId>jpa</artifactId>
<version>1.0.2</version>
<name>${project.artifactId}</name>
<description>A collection of JPA extensions to assist with building complex queries</description>
<url>https://github.com/locke-chappel/oss-commons-jpa</url>

<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>

<developers>
<developer>
<id>locke-chappel</id>
<name>Locke-Chappel</name>
</developer>
</developers>

<issueManagement>
<system>GitHub</system>
<url>https://github.com/locke-chappel/oss-commons-jpa/issues</url>
</issueManagement>

<scm>
<connection>scm:git:git://github.com/locke-chappel/oss-commons-jpa.git</connection>
<developerConnection>scm:git:ssh://github.com:locke-chappel/oss-commons-jpa.git</developerConnection>
<url>https://github.com/locke-chappel/oss-commons-jpa</url>
</scm>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>serialization</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>util</artifactId>
</dependency>

<dependency>
<groupId>org.hibernate.orm</groupId>
<artifactId>hibernate-core</artifactId>
<version>${org.hibernate.version}</version>
</dependency>

<!-- Testing -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>testing</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>
--add-opens io.github.lc.oss.commons.jpa/io.github.lc.oss.commons.jpa=ALL-UNNAMED
${JacocoArgs}
</argLine>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 2fc466c

Please sign in to comment.