Skip to content

Commit

Permalink
Merge pull request #751 from NASA-PDS/i750
Browse files Browse the repository at this point in the history
Update maven to support latest java version
  • Loading branch information
jordanpadams committed Apr 5, 2024
2 parents 847699b + c73a9a2 commit 15e1549
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/branch-cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,7 @@ jobs:
java-version: ${{matrix.java-version}}
-
name: 🩺 Test Software
run: mvn package

-
name: 🩺 Test Site
run: mvn clean site
run: mvn site package

-
name: ∫ Smoke Tests with Discipline LDDs
Expand Down
38 changes: 21 additions & 17 deletions model-ontology/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -111,24 +111,28 @@ POSSIBILITY OF SUCH DAMAGE.
</execution>
</executions>
</plugin>
<plugin>
<groupId>gov.nasa.pds.model</groupId>
<artifactId>model-dmdocument</artifactId>
<version>${project.version}</version>
<configuration>
<ontologySrc>${basedir}/src/ontology</ontologySrc>
</configuration>
<executions>
<execution>
<id>default-compile</id>
<phase>compile</phase>
<goals>
<goal>generateDocumentation</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>gov.nasa.pds.model</groupId>
<artifactId>model-dmdocument</artifactId>
<version>${project.version}</version>
<configuration>
<ontologySrc>${basedir}/src/ontology</ontologySrc>
</configuration>
<executions>
<execution>
<id>default-compile</id>
<phase>compile</phase>
<goals>
<goal>generateDocumentation</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>

<!-- Inherit from parent -->
Expand Down

0 comments on commit 15e1549

Please sign in to comment.