Skip to content

Commit 972dba3

Browse files
author
Morten Haraldsen
committed
Adjust for new release builds
1 parent f60e25f commit 972dba3

File tree

6 files changed

+437
-484
lines changed

6 files changed

+437
-484
lines changed

dachs-audit/pom.xml

Lines changed: 28 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,30 @@
11
<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-
<parent>
5-
<groupId>com.ethlo.dachs</groupId>
6-
<artifactId>dachs</artifactId>
7-
<version>1.2.0-SNAPSHOT</version>
8-
</parent>
9-
<name>Dachs - Audit</name>
10-
<description>Dachs - Data Change Snitch - Audit module</description>
11-
<artifactId>dachs-audit</artifactId>
12-
<build>
13-
<plugins>
14-
<plugin>
15-
<groupId>org.jacoco</groupId>
16-
<artifactId>jacoco-maven-plugin</artifactId>
17-
</plugin>
18-
<plugin>
19-
<artifactId>maven-source-plugin</artifactId>
20-
</plugin>
21-
<plugin>
22-
<artifactId>maven-javadoc-plugin</artifactId>
23-
</plugin>
24-
<plugin>
25-
<groupId>org.apache.maven.plugins</groupId>
26-
<artifactId>maven-gpg-plugin</artifactId>
27-
</plugin>
28-
<plugin>
29-
<groupId>org.sonatype.plugins</groupId>
30-
<artifactId>nexus-staging-maven-plugin</artifactId>
31-
</plugin>
32-
</plugins>
33-
</build>
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+
<parent>
5+
<groupId>com.ethlo.dachs</groupId>
6+
<artifactId>dachs</artifactId>
7+
<version>1.2.0</version>
8+
</parent>
9+
<name>Dachs - Audit</name>
10+
<description>Dachs - Data Change Snitch - Audit module</description>
11+
<artifactId>dachs-audit</artifactId>
12+
<build>
13+
<plugins>
14+
<plugin>
15+
<artifactId>maven-source-plugin</artifactId>
16+
</plugin>
17+
<plugin>
18+
<artifactId>maven-javadoc-plugin</artifactId>
19+
</plugin>
20+
<plugin>
21+
<groupId>org.apache.maven.plugins</groupId>
22+
<artifactId>maven-gpg-plugin</artifactId>
23+
</plugin>
24+
<plugin>
25+
<groupId>org.sonatype.central</groupId>
26+
<artifactId>central-publishing-maven-plugin</artifactId>
27+
</plugin>
28+
</plugins>
29+
</build>
3430
</project>

dachs-common-jpa/pom.xml

Lines changed: 54 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,61 @@
1-
<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">
2-
<modelVersion>4.0.0</modelVersion>
3-
<parent>
4-
<groupId>com.ethlo.dachs</groupId>
5-
<artifactId>dachs</artifactId>
6-
<version>1.2.0-SNAPSHOT</version>
7-
</parent>
8-
<artifactId>dachs-common-jpa</artifactId>
9-
<name>Dachs - Common JPA</name>
10-
<dependencies>
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+
<parent>
5+
<groupId>com.ethlo.dachs</groupId>
6+
<artifactId>dachs</artifactId>
7+
<version>1.2.0</version>
8+
</parent>
9+
<artifactId>dachs-common-jpa</artifactId>
10+
<name>Dachs - Common JPA</name>
11+
<dependencies>
1112
<dependency>
1213
<groupId>jakarta.persistence</groupId>
1314
<artifactId>jakarta.persistence-api</artifactId>
1415
<version>3.1.0</version>
1516
</dependency>
1617
<dependency>
17-
<groupId>org.springframework</groupId>
18-
<artifactId>spring-core</artifactId>
19-
</dependency>
20-
<dependency>
21-
<groupId>org.springframework</groupId>
22-
<artifactId>spring-tx</artifactId>
23-
</dependency>
24-
<dependency>
25-
<groupId>org.springframework</groupId>
26-
<artifactId>spring-orm</artifactId>
27-
</dependency>
28-
<dependency>
29-
<groupId>com.ethlo.dachs</groupId>
30-
<artifactId>dachs-common</artifactId>
31-
<version>${project.version}</version>
32-
</dependency>
33-
<dependency>
34-
<groupId>org.springframework</groupId>
35-
<artifactId>spring-aop</artifactId>
36-
</dependency>
37-
<dependency>
38-
<groupId>org.aspectj</groupId>
39-
<artifactId>aspectjweaver</artifactId>
40-
</dependency>
41-
</dependencies>
42-
<build>
43-
<plugins>
44-
<plugin>
45-
<groupId>org.jacoco</groupId>
46-
<artifactId>jacoco-maven-plugin</artifactId>
47-
</plugin>
48-
<plugin>
49-
<artifactId>maven-source-plugin</artifactId>
50-
</plugin>
51-
<plugin>
52-
<artifactId>maven-javadoc-plugin</artifactId>
53-
</plugin>
54-
<plugin>
55-
<groupId>org.apache.maven.plugins</groupId>
56-
<artifactId>maven-gpg-plugin</artifactId>
57-
</plugin>
58-
<plugin>
59-
<groupId>org.sonatype.plugins</groupId>
60-
<artifactId>nexus-staging-maven-plugin</artifactId>
61-
</plugin>
62-
</plugins>
63-
</build>
18+
<groupId>org.springframework</groupId>
19+
<artifactId>spring-core</artifactId>
20+
</dependency>
21+
<dependency>
22+
<groupId>org.springframework</groupId>
23+
<artifactId>spring-tx</artifactId>
24+
</dependency>
25+
<dependency>
26+
<groupId>org.springframework</groupId>
27+
<artifactId>spring-orm</artifactId>
28+
</dependency>
29+
<dependency>
30+
<groupId>com.ethlo.dachs</groupId>
31+
<artifactId>dachs-common</artifactId>
32+
<version>${project.version}</version>
33+
</dependency>
34+
<dependency>
35+
<groupId>org.springframework</groupId>
36+
<artifactId>spring-aop</artifactId>
37+
</dependency>
38+
<dependency>
39+
<groupId>org.aspectj</groupId>
40+
<artifactId>aspectjweaver</artifactId>
41+
</dependency>
42+
</dependencies>
43+
<build>
44+
<plugins>
45+
<plugin>
46+
<artifactId>maven-source-plugin</artifactId>
47+
</plugin>
48+
<plugin>
49+
<artifactId>maven-javadoc-plugin</artifactId>
50+
</plugin>
51+
<plugin>
52+
<groupId>org.apache.maven.plugins</groupId>
53+
<artifactId>maven-gpg-plugin</artifactId>
54+
</plugin>
55+
<plugin>
56+
<groupId>org.sonatype.central</groupId>
57+
<artifactId>central-publishing-maven-plugin</artifactId>
58+
</plugin>
59+
</plugins>
60+
</build>
6461
</project>

dachs-common-test/pom.xml

Lines changed: 57 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,65 @@
11
<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-
<parent>
5-
<groupId>com.ethlo.dachs</groupId>
6-
<artifactId>dachs</artifactId>
7-
<version>1.2.0-SNAPSHOT</version>
8-
</parent>
9-
<artifactId>dachs-common-test</artifactId>
10-
<name>Dachs - Common Test</name>
11-
<dependencies>
12-
<dependency>
13-
<groupId>${project.groupId}</groupId>
14-
<artifactId>dachs-common</artifactId>
15-
<version>${project.version}</version>
16-
</dependency>
17-
<dependency>
18-
<groupId>org.springframework</groupId>
19-
<artifactId>spring-orm</artifactId>
20-
</dependency>
21-
<dependency>
22-
<groupId>org.springframework.data</groupId>
23-
<artifactId>spring-data-commons</artifactId>
24-
</dependency>
25-
<dependency>
26-
<groupId>org.springframework</groupId>
27-
<artifactId>spring-tx</artifactId>
28-
</dependency>
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+
<parent>
5+
<groupId>com.ethlo.dachs</groupId>
6+
<artifactId>dachs</artifactId>
7+
<version>1.2.0</version>
8+
</parent>
9+
<artifactId>dachs-common-test</artifactId>
10+
<name>Dachs - Common Test</name>
11+
<dependencies>
12+
<dependency>
13+
<groupId>${project.groupId}</groupId>
14+
<artifactId>dachs-common</artifactId>
15+
<version>${project.version}</version>
16+
</dependency>
17+
<dependency>
18+
<groupId>org.springframework</groupId>
19+
<artifactId>spring-orm</artifactId>
20+
</dependency>
21+
<dependency>
22+
<groupId>org.springframework.data</groupId>
23+
<artifactId>spring-data-commons</artifactId>
24+
</dependency>
25+
<dependency>
26+
<groupId>org.springframework</groupId>
27+
<artifactId>spring-tx</artifactId>
28+
</dependency>
2929
<dependency>
3030
<groupId>jakarta.persistence</groupId>
3131
<artifactId>jakarta.persistence-api</artifactId>
3232
<version>3.1.0</version>
3333
</dependency>
3434
<dependency>
35-
<groupId>org.springframework</groupId>
36-
<artifactId>spring-test</artifactId>
37-
</dependency>
38-
<dependency>
39-
<groupId>org.assertj</groupId>
40-
<artifactId>assertj-core</artifactId>
41-
</dependency>
42-
<dependency>
43-
<groupId>junit</groupId>
44-
<artifactId>junit</artifactId>
45-
</dependency>
46-
</dependencies>
47-
<build>
48-
<plugins>
49-
<plugin>
50-
<artifactId>maven-source-plugin</artifactId>
51-
</plugin>
52-
<plugin>
53-
<artifactId>maven-javadoc-plugin</artifactId>
54-
</plugin>
55-
<plugin>
56-
<groupId>org.apache.maven.plugins</groupId>
57-
<artifactId>maven-gpg-plugin</artifactId>
58-
</plugin>
59-
<plugin>
60-
<groupId>org.sonatype.plugins</groupId>
61-
<artifactId>nexus-staging-maven-plugin</artifactId>
62-
</plugin>
63-
</plugins>
64-
</build>
35+
<groupId>org.springframework</groupId>
36+
<artifactId>spring-test</artifactId>
37+
</dependency>
38+
<dependency>
39+
<groupId>org.assertj</groupId>
40+
<artifactId>assertj-core</artifactId>
41+
</dependency>
42+
<dependency>
43+
<groupId>junit</groupId>
44+
<artifactId>junit</artifactId>
45+
</dependency>
46+
</dependencies>
47+
<build>
48+
<plugins>
49+
<plugin>
50+
<artifactId>maven-source-plugin</artifactId>
51+
</plugin>
52+
<plugin>
53+
<artifactId>maven-javadoc-plugin</artifactId>
54+
</plugin>
55+
<plugin>
56+
<groupId>org.apache.maven.plugins</groupId>
57+
<artifactId>maven-gpg-plugin</artifactId>
58+
</plugin>
59+
<plugin>
60+
<groupId>org.sonatype.central</groupId>
61+
<artifactId>central-publishing-maven-plugin</artifactId>
62+
</plugin>
63+
</plugins>
64+
</build>
6565
</project>

0 commit comments

Comments
 (0)