Skip to content

Commit

Permalink
Fix build after moving to feature branch
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasstamann committed Mar 13, 2024
1 parent 95f15b5 commit e2907ee
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 8 deletions.
4 changes: 2 additions & 2 deletions constraints/constraint-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

<parent>
<groupId>io.toolisticon.aptk</groupId>
<artifactId>extension-parent</artifactId>
<version>0.22.12-SNAPSHOT</version>
<artifactId>aptk-constraint-parent</artifactId>
<version>0.22.12-constraints-SNAPSHOT</version>
</parent>

<name>aptk-constraint-api</name>
Expand Down
21 changes: 19 additions & 2 deletions constraints/constraint-impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

<parent>
<groupId>io.toolisticon.aptk</groupId>
<artifactId>extension-parent</artifactId>
<version>0.22.12-SNAPSHOT</version>
<artifactId>aptk-constraint-parent</artifactId>
<version>0.22.12-constraints-SNAPSHOT</version>
</parent>

<name>aptk-constraint-impl</name>
Expand Down Expand Up @@ -38,6 +38,23 @@
</dependency>


<!-- enforcing build order as test dependency -->
<!-- Sorry this is a really shitty way to achieve this, but mvn seems to ignore annotation processor path dependencies-->
<dependency>
<groupId>io.toolisticon.aptk</groupId>
<artifactId>aptk-annotationwrapper-processor</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>io.toolisticon.aptk</groupId>
<artifactId>aptk-compilermessages-processor</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>


<!-- test dependencies -->
<dependency>
<groupId>junit</groupId>
Expand Down
4 changes: 2 additions & 2 deletions constraints/constraint-processor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<parent>
<groupId>io.toolisticon.aptk</groupId>
<artifactId>aptk-annotationwrapper-parent</artifactId>
<version>0.22.12-SNAPSHOT</version>
<artifactId>aptk-constraint-parent</artifactId>
<version>0.22.12-constraints-SNAPSHOT</version>
</parent>

<name>aptk-constraint-processor</name>
Expand Down
4 changes: 2 additions & 2 deletions constraints/pom.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<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>

<artifactId>constraint-parent</artifactId>
<artifactId>aptk-constraint-parent</artifactId>
<packaging>pom</packaging>

<parent>
<groupId>io.toolisticon.aptk</groupId>
<artifactId>aptk-parent</artifactId>
<version>0.22.12-SNAPSHOT</version>
<version>0.22.12-constraints-SNAPSHOT</version>
</parent>

<name>constraint-parent</name>
Expand Down

0 comments on commit e2907ee

Please sign in to comment.