Skip to content

Commit

Permalink
Merge pull request #716 from opencb/TASK-7362
Browse files Browse the repository at this point in the history
TASK-7362 - Cellbase does not compile on GitHub Actions
  • Loading branch information
juanfeSanahuja authored Jan 29, 2025
2 parents 5ca6a83 + d3236aa commit a7fef92
Showing 1 changed file with 19 additions and 12 deletions.
31 changes: 19 additions & 12 deletions cellbase-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>

<artifactId>cellbase-server</artifactId>
<packaging>jar</packaging>
<packaging>war</packaging>

<dependencies>
<dependency>
Expand Down Expand Up @@ -137,15 +137,6 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.2.3</version>
<executions>
<execution>
<id>make-a-war</id>
<phase>compile</phase>
<goals>
<goal>war</goal>
</goals>
</execution>
</executions>
<configuration>
<warName>${CELLBASE.WAR.NAME}</warName>
<webResources>
Expand All @@ -157,12 +148,29 @@
</webResources>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>make-a-jar</id>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>


<!-- Plugin to install the JAR -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<!-- <version>3.1.1</version>-->
<version>3.1.1</version>
<executions>
<execution>
<id>install-jar</id>
<phase>install</phase>
<goals>
<goal>install-file</goal>
Expand All @@ -181,5 +189,4 @@
</plugin>
</plugins>
</build>

</project>

0 comments on commit a7fef92

Please sign in to comment.