Use local copy of x4o
This commit is contained in:
parent
bae21583c5
commit
3dabaf14a1
|
@ -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
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
BIN
local-libs/x4o-driver-0.8.7-SNAPSHOT2.jar
Normal file
BIN
local-libs/x4o-driver-0.8.7-SNAPSHOT2.jar
Normal file
Binary file not shown.
Loading…
Reference in a new issue