Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 5 additions & 16 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,13 @@ on:

jobs:
build:
strategy:
matrix:
platform: [ ubuntu-latest ]
java-version: [ 8 ]

runs-on: ${{ matrix.platform }}
env:
PLATFORM: ${{ matrix.platform }}
JAVA_VERSION: ${{ matrix.java-version }}

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
- name: Setup Maven Action
uses: s4u/[email protected]
with:
distribution: 'temurin'
java-version: ${{ matrix.java-version }}
cache: 'maven'
java-version: 8
maven-version: '3.6.3'
- name: Build with Maven
id: build_with_maven
run: |
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@
</plugin>

<!-- Plugin to generate javadoc JAR -->
<!-- <plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.2</version>
Expand All @@ -283,7 +283,7 @@
</goals>
</execution>
</executions>
</plugin>-->
</plugin>

</plugins>
</build>
Expand All @@ -296,8 +296,8 @@
</repository>
<repository>
<id>pentaho</id>
<name>Pentaho Omni</name>
<url>https://repo.orl.eng.hitachivantara.com/artifactory/pnt-mvn</url>
<name>Pentaho</name>
<url>https://hitachiedge1.jfrog.io/artifactory/pntpub-maven-release-cache/</url>
</repository>
</repositories>
<pluginRepositories>
Expand Down
Loading