Skip to content

Commit

Permalink
Update version and simplify Maven setup (#272)
Browse files Browse the repository at this point in the history
1.
version bumps resolve platform incompatibilities on non-x86 platforms
```
[ERROR] Failed to execute goal org.jbake:jbake-maven-plugin:0.3.6-rc.2:generate (default) on project drools-website: Execution default of goal org.jbake:jbake-maven-plugin:0.3.6-rc.2:generate failed: An API incompatibility was encountered while executing org.jbake:jbake-maven-plugin:0.3.6-rc.2:generate: java.lang.UnsatisfiedLinkError: ... (fat file, but missing compatible architecture (have 'i386,x86_64', need 'arm64'))
```

2.
avoid the need to specify manually jbake-maven-plugin dependencies version
ref: jbake-org/jbake#740
  • Loading branch information
tarilabs authored Oct 30, 2023
1 parent 9560c50 commit b581337
Showing 1 changed file with 1 addition and 23 deletions.
24 changes: 1 addition & 23 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<plugin>
<groupId>org.jbake</groupId>
<artifactId>jbake-maven-plugin</artifactId>
<version>0.3.6-rc.2</version>
<version>2.7.0-rc.7</version>
<executions>
<execution>
<phase>generate-resources</phase>
Expand All @@ -48,28 +48,6 @@
<inputDirectory>${project.basedir}</inputDirectory>
<outputDirectory>${project.build.directory}/website</outputDirectory>
</configuration>
<dependencies>
<dependency>
<groupId>org.jbake</groupId>
<artifactId>jbake-core</artifactId>
<version>2.7.0-rc.4</version>
</dependency>
<dependency>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctorj</artifactId>
<version>2.5.2</version>
</dependency>
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>2.3.31</version>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>2.0</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
Expand Down

0 comments on commit b581337

Please sign in to comment.