Skip to content

Commit

Permalink
fix #2783 Add snapshot repository to pom.xml and streamline GitHub Ac…
Browse files Browse the repository at this point in the history
…tions workflows
  • Loading branch information
marevol committed Nov 17, 2023
1 parent 6d0530a commit 0f2ef0c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 18 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,15 +81,6 @@ jobs:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Checkout fess-parent
uses: actions/checkout@v2
with:
repository: codelibs/fess-parent
path: fess-parent
- name: Install fess-parent
run: |
cd fess-parent
mvn install
- name: Build with Maven
run: mvn -B package --file pom.xml

Expand Down
9 changes: 0 additions & 9 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,6 @@ jobs:
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Checkout fess-parent
uses: actions/checkout@v2
with:
repository: codelibs/fess-parent
path: fess-parent
- name: Install fess-parent
run: |
cd fess-parent
mvn install
- name: Download Plugins with Maven
run: mvn -B antrun:run --file pom.xml
- name: Build with Maven
Expand Down
12 changes: 12 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -900,6 +900,18 @@
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>snapshots-repo</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<dependencies>
<!-- lastaflute -->
<dependency>
Expand Down

0 comments on commit 0f2ef0c

Please sign in to comment.