Skip to content

Commit

Permalink
update maven build config
Browse files Browse the repository at this point in the history
  • Loading branch information
eiriksgata committed Jan 30, 2024
1 parent 6a899fb commit 4fd63c0
Showing 1 changed file with 24 additions and 6 deletions.
30 changes: 24 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,6 @@

<dependencies>

<dependency>
<groupId>com.github.eiriksgata</groupId>
<artifactId>trpg-java-dice-spring</artifactId>
<version>1.6.1</version>
</dependency>


<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down Expand Up @@ -257,6 +251,14 @@
<profiles>
<profile>
<id>dev</id>
<dependencies>
<dependency>
<groupId>com.github.eiriksgata</groupId>
<artifactId>trpg-java-dice-spring</artifactId>
<version>1.6.1</version>
</dependency>

</dependencies>
<properties>
<profiles.active>dev</profiles.active>
</properties>
Expand All @@ -265,13 +267,29 @@

<profile>
<id>uat</id>
<dependencies>
<dependency>
<groupId>com.github.eiriksgata</groupId>
<artifactId>trpg-java-dice-spring</artifactId>
<version>1.6.1</version>
</dependency>

</dependencies>
<properties>
<profiles.active>uat</profiles.active>
</properties>
</profile>

<profile>
<id>prod</id>
<dependencies>
<dependency>
<groupId>com.github.eiriksgata</groupId>
<artifactId>trpg-java-dice</artifactId>
<version>spring-4f6bb8d006-1</version>
</dependency>

</dependencies>
<properties>
<profiles.active>prod</profiles.active>
</properties>
Expand Down

0 comments on commit 4fd63c0

Please sign in to comment.