-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request 'Release v24.04.2' (#4) from release_24.04.2 into …
…master
- Loading branch information
Showing
18 changed files
with
269 additions
and
265 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Publish Development Build | ||
|
||
permissions: | ||
contents: write | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'develop' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out source code | ||
uses: actions/checkout@v4 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 17 | ||
- name: Set up Maven cache | ||
uses: actions/cache@v1 | ||
with: | ||
path: ~/.m2/repository | ||
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | ||
restore-keys: | | ||
${{ runner.os }}-maven- | ||
- name: Build with Maven | ||
run: mvn clean verify -U -P snapshot-build | ||
- name: Get current date | ||
id: date | ||
run: echo "::set-output name=date::$(date +'%Y-%m-%d %H:%M:%S %Z')" | ||
- name: Create tag name from date | ||
id: tagdate | ||
run: echo "::set-output name=tagdate::$(date +'%Y-%m-%d_%H-%M-%S_%Z')" | ||
- name: Release | ||
id: create_release | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
name: ${{ steps.date.outputs.date }} | ||
tag_name: ${{ steps.tagdate.outputs.tagdate }} | ||
generate_release_notes: true | ||
draft: false | ||
prerelease: true | ||
files: | | ||
**/target/*.jar | ||
install/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Publish Release Build | ||
|
||
permissions: | ||
contents: write | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out source code | ||
uses: actions/checkout@v4 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 17 | ||
- name: Set up Maven cache | ||
uses: actions/cache@v1 | ||
with: | ||
path: ~/.m2/repository | ||
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | ||
restore-keys: | | ||
${{ runner.os }}-maven- | ||
- name: Build with Maven | ||
run: mvn clean verify -U -P release-build | ||
- name: Release | ||
id: create_release | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
name: Release ${{ github.ref_name }} | ||
generate_release_notes: true | ||
draft: false | ||
prerelease: false | ||
files: | | ||
**/target/*.jar | ||
install/* |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
|
||
# Junk files | ||
*~ | ||
.DS_Store | ||
|
||
# Build | ||
target/ | ||
bin/ | ||
build/ | ||
node_modules/ | ||
|
||
# Eclipse | ||
.project | ||
.classpath | ||
.settings/ | ||
|
||
# IntelliJ IDEA | ||
.idea | ||
*.iml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
30 changes: 15 additions & 15 deletions
30
plugin/plugin_intranda_export_fedora.xml → install/plugin_intranda_export_fedora.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<config_plugin> | ||
<!-- fedoraUrl: REST endpoint of the target Fedora application. --> | ||
<fedoraUrl>http://localhost:8888/fedora/rest</fedoraUrl> | ||
<!-- userVersioning: If true, for each run of the export step, a new revision of the process will be created. Default is true. --> | ||
<useVersioning>true</useVersioning> | ||
<!-- ingestMasterImages: If true, master images of the Goobi process will be ingested into the container /master. Default is true. --> | ||
<ingestMasterImages>true</ingestMasterImages> | ||
<!-- ingestMediaImages: If true, derivate images of the Goobi process will be ingested into the container /media. Default is true. --> | ||
<ingestMediaImages>true</ingestMediaImages> | ||
<!-- ingestMetsFile: If true, a METS/MODS file will be generated and ingested. Default is true. --> | ||
<ingestMetsFile>true</ingestMetsFile> | ||
<!-- exportMetsFile: If true, the METS/MODS file will be exported into the given destination folder. Default is true. --> | ||
<exportMetsFile>true</exportMetsFile> | ||
</config_plugin> | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<config_plugin> | ||
<!-- fedoraUrl: REST endpoint of the target Fedora application. --> | ||
<fedoraUrl>http://localhost:8888/fedora/rest</fedoraUrl> | ||
<!-- userVersioning: If true, for each run of the export step, a new revision of the process will be created. Default is true. --> | ||
<useVersioning>true</useVersioning> | ||
<!-- ingestMasterImages: If true, master images of the Goobi process will be ingested into the container /master. Default is true. --> | ||
<ingestMasterImages>true</ingestMasterImages> | ||
<!-- ingestMediaImages: If true, derivate images of the Goobi process will be ingested into the container /media. Default is true. --> | ||
<ingestMediaImages>true</ingestMediaImages> | ||
<!-- ingestMetsFile: If true, a METS/MODS file will be generated and ingested. Default is true. --> | ||
<ingestMetsFile>true</ingestMetsFile> | ||
<!-- exportMetsFile: If true, the METS/MODS file will be exported into the given destination folder. Default is true. --> | ||
<exportMetsFile>true</exportMetsFile> | ||
</config_plugin> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>io.goobi.workflow.plugin</groupId> | ||
<artifactId>plugin-export-fedora</artifactId> | ||
<version>24.04.2</version> | ||
</parent> | ||
<artifactId>plugin-export-fedora-base</artifactId> | ||
<packaging>jar</packaging> | ||
</project> |
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.