Skip to content

Commit

Permalink
wultra/tasklist#23 do not skip war deploy in case of jfrog (#473)
Browse files Browse the repository at this point in the history
  • Loading branch information
zcgandcomp authored Oct 24, 2022
1 parent f297897 commit 84a0035
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 16 deletions.
29 changes: 21 additions & 8 deletions enrollment-server-onboarding/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -166,13 +166,6 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
Expand Down Expand Up @@ -268,7 +261,6 @@
<additionalparam>-Xdoclint:none</additionalparam>
</properties>
</profile>

<profile>
<id>standalone</id>
<dependencies>
Expand All @@ -278,6 +270,27 @@
</dependency>
</dependencies>
</profile>
<profile>
<id>public-repository</id>
<activation>
<property>
<name>!useInternalRepo</name>
</property>
</activation>
<properties>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>
29 changes: 21 additions & 8 deletions enrollment-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -160,13 +160,6 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand All @@ -188,7 +181,6 @@
<additionalparam>-Xdoclint:none</additionalparam>
</properties>
</profile>

<profile>
<id>standalone</id>
<dependencies>
Expand All @@ -198,6 +190,27 @@
</dependency>
</dependencies>
</profile>
<profile>
<id>public-repository</id>
<activation>
<property>
<name>!useInternalRepo</name>
</property>
</activation>
<properties>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>

0 comments on commit 84a0035

Please sign in to comment.