Use local copy of x4o

This commit is contained in:
Willem Cazander 2022-08-13 01:54:05 +02:00
parent bae21583c5
commit 3dabaf14a1
4 changed files with 27 additions and 1 deletions

View file

@ -22,6 +22,7 @@ Requirements;
* Setup [Hyperdrive](https://github.com/hyperspace-org/hyperdrive-service)
* Use an AdoptOpenJDK(11++) to run the demo.
* Run "mvn initialize" once to copy local lib to local m2 repro.
### Project Launch Release

View file

@ -16,6 +16,11 @@
<groupId>org.x4o</groupId>
<artifactId>x4o-driver</artifactId>
</dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>jasper-el</artifactId>
<version>6.0.20</version>
</dependency>
</dependencies>
<build>
<plugins>
@ -30,7 +35,27 @@
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration></configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
<executions>
<execution>
<id>deploy-local-x4o</id>
<phase>initialize</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<groupId>org.x4o</groupId>
<artifactId>x4o-driver</artifactId>
<version>0.8.7-SNAPSHOT2</version>
<packaging>jar</packaging>
<file>${project.basedir}/../local-libs/x4o-driver-0.8.7-SNAPSHOT2.jar</file>
</configuration>
</execution>
</executions>

Binary file not shown.

View file

@ -168,7 +168,7 @@
<dependency>
<groupId>org.x4o</groupId>
<artifactId>x4o-driver</artifactId>
<version>0.8.7-SNAPSHOT</version>
<version>0.8.7-SNAPSHOT2</version>
</dependency>
<dependency>
<groupId>io.github.spair</groupId>