Skip to content

Commit

Permalink
AUT-924 Homogenize build process and dependency exclusions
Browse files Browse the repository at this point in the history
  • Loading branch information
alarkvell committed Jun 10, 2022
1 parent bb5d2e1 commit 7e2684a
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
1 change: 1 addition & 0 deletions eidas-client-opensaml-extension/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>

<!-- Override dependencies -->
Expand Down
27 changes: 25 additions & 2 deletions eidas-client-webapp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,16 @@
<artifactId>eidas-client-opensaml-extension</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
Expand Down Expand Up @@ -74,8 +84,8 @@
</dependency>
<dependency>
<groupId>com.github.tomakehurst</groupId>
<artifactId>wiremock-standalone</artifactId>
<version>2.27.2</version>
<artifactId>wiremock-jre8-standalone</artifactId>
<version>2.33.2</version>
<scope>test</scope>
</dependency>

Expand Down Expand Up @@ -110,6 +120,12 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
<skip>${skip.layers}</skip>
<layers>
<enabled>true</enabled>
Expand Down Expand Up @@ -145,6 +161,13 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<configuration>
<offline>true</offline><!-- TODO Remove when >= 5.0.0 is used, there offline=true is default. -->
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 7e2684a

Please sign in to comment.