5 Commits

Author SHA1 Message Date
47e8ec4f43 Version bump to v0.3.4
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful
2023-01-25 01:02:10 -05:00
c0c96c7a51 Updated documentation to use 17
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2023-01-25 00:57:06 -05:00
8cb640d804 Updated woodpecker config to use eclipse temurin Alpine image
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful
2023-01-24 23:18:33 -05:00
1189f4b61c Changed dnf commands to apt for the new image
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2023-01-15 17:07:25 -05:00
0f5b9eb45a Changed to using the eclipse temurin JDK builds
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2023-01-15 17:04:52 -05:00
3 changed files with 9 additions and 11 deletions

View File

@ -1,19 +1,19 @@
pipeline: pipeline:
test: test:
image: maven:3-openjdk-18 image: maven:3-eclipse-temurin-17-alpine
commands: commands:
- microdnf install -y lsof - apk add lsof
- mvn test - mvn test
build: build:
image: maven:3-openjdk-18 image: maven:3-eclipse-temurin-17-alpine
commands: commands:
- mvn clean compile assembly:single - mvn clean compile assembly:single
package: package:
image: maven:3-openjdk-18 image: maven:3-eclipse-temurin-17-alpine
commands: commands:
- microdnf install -y rpm-build - apk add rpm
- mvn clean compile package -Dmaven.test.skip - mvn clean compile package -Dmaven.test.skip
when: when:
event: tag event: tag

View File

@ -4,17 +4,15 @@ The Bit Goblin video transcoder.
## Building ## Building
Currently this project is targeting Java 11 LTS and uses Maven to manage the software lifecycle. Thus, you must have a Java 11 JDK and Maven installed to build this project. Currently this project is targeting Java 17 LTS and uses Maven to manage the software lifecycle. Thus, you must have a Java 17 JDK and Maven installed to build this project.
*NOTE:* The targeted Java version will likely change to 17 LTS soon.
### Ubuntu ### Ubuntu
`sudo apt install openjdk-11-jdk maven` `sudo apt install openjdk-17-jdk maven`
### Red Hat/Almalinux ### Red Hat/Almalinux
`sudo dnf install java-11-openjdk-devel maven` `sudo dnf install java-17-openjdk-devel maven`
### Actually Building ### Actually Building

View File

@ -6,7 +6,7 @@
<groupId>tech.bitgoblin</groupId> <groupId>tech.bitgoblin</groupId>
<artifactId>dragoon</artifactId> <artifactId>dragoon</artifactId>
<version>0.3.3</version> <version>0.3.4</version>
<name>Dragoon</name> <name>Dragoon</name>
<url>https://www.bitgoblin.tech</url> <url>https://www.bitgoblin.tech</url>