Fixed X4O version and added mmdoc
This commit is contained in:
parent
d811baeb9c
commit
7886fc567f
37 changed files with 1830 additions and 63 deletions
42
pom.xml
42
pom.xml
|
|
@ -36,6 +36,7 @@
|
|||
<module>gdxapp4d-chain-mod-vrgem4</module>
|
||||
<module>gdxapp4d-chain-mod-vrsys5</module>
|
||||
<module>gdxapp4d-lib-x4o</module>
|
||||
<module>gdxapp4d-app-mmdoc</module>
|
||||
</modules>
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
|
|
@ -43,6 +44,8 @@
|
|||
<gdx.version>1.10.0</gdx.version>
|
||||
<spair.version>1.86.0</spair.version>
|
||||
<nativefilechooser.version>1.0.0</nativefilechooser.version>
|
||||
<jasper-el.version>6.0.20</jasper-el.version>
|
||||
<x4o.version>0.8.7-SNAPSHOT3</x4o.version>
|
||||
<tos4.packages>
|
||||
org.osgi.framework,
|
||||
org.osgi.service.packageadmin,
|
||||
|
|
@ -199,12 +202,22 @@
|
|||
<dependency>
|
||||
<groupId>org.x4o</groupId>
|
||||
<artifactId>x4o-driver</artifactId>
|
||||
<version>0.8.7-SNAPSHOT2</version>
|
||||
<version>${x4o.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.x4o</groupId>
|
||||
<artifactId>x4o-eld-doc</artifactId>
|
||||
<version>${x4o.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.x4o</groupId>
|
||||
<artifactId>x4o-html</artifactId>
|
||||
<version>${x4o.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>jasper-el</artifactId>
|
||||
<version>6.0.20</version>
|
||||
<version>${jasper-el.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.github.spair</groupId>
|
||||
|
|
@ -277,6 +290,26 @@
|
|||
<version>1.10.0</version>
|
||||
<classifier>natives-desktop</classifier>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eobjects.metamodel</groupId>
|
||||
<artifactId>MetaModel-full</artifactId>
|
||||
<version>3.4.11</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.mongodb</groupId>
|
||||
<artifactId>mongo-java-driver</artifactId>
|
||||
<version>3.10.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>postgresql</groupId>
|
||||
<artifactId>postgresql</artifactId>
|
||||
<version>9.1-901-1.jdbc4</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.h2database</groupId>
|
||||
<artifactId>h2</artifactId>
|
||||
<version>1.3.170</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
<dependencies>
|
||||
|
|
@ -320,6 +353,11 @@
|
|||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<version>3.3.0</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-install-plugin</artifactId>
|
||||
<version>2.5.2</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue