Skip to content

Commit

Permalink
Release 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mosoriob committed Feb 25, 2022
1 parent c0510e5 commit 2f16fe4
Show file tree
Hide file tree
Showing 8 changed files with 410 additions and 4 deletions.
2 changes: 1 addition & 1 deletion client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>org.ontosoft</groupId>
<artifactId>ontosoft</artifactId>
<version>2.0-SNAPSHOT</version>
<version>2.1.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
158 changes: 158 additions & 0 deletions client/pom.xml.versionsBackup
Original file line number Diff line number Diff line change
@@ -0,0 +1,158 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

<!-- POM file generated with GWT webAppCreator -->
<modelVersion>4.0.0</modelVersion>
<artifactId>ontosoft-client</artifactId>
<name>Ontosoft client</name>
<description>Ontosoft portal web application</description>
<packaging>war</packaging>
<parent>
<groupId>org.ontosoft</groupId>
<artifactId>ontosoft</artifactId>
<version>2.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<properties>
<gwt.version>2.7.0</gwt.version>
<gwtp.version>1.5</gwtp.version>
<gin.version>2.1.2</gin.version>
<gwt.d3.version>1.1.1</gwt.d3.version>
<restygwt.version>2.0.3</restygwt.version>
<validation.version>1.0.0.GA</validation.version>
<gwtbootstrap3.version>0.9.4</gwtbootstrap3.version>

<java.version>1.7</java.version>
<webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<!-- OntoSoft shared -->
<dependency>
<groupId>org.ontosoft</groupId>
<artifactId>ontosoft-shared</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.ontosoft</groupId>
<artifactId>ontosoft-shared</artifactId>
<version>${project.version}</version>
<classifier>sources</classifier>
</dependency>

<!-- GWT -->
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwt.version}</version>
<scope>provided</scope>
</dependency>

<!-- GWT Bootstrap3 -->
<dependency>
<groupId>org.gwtbootstrap3</groupId>
<artifactId>gwtbootstrap3</artifactId>
<version>${gwtbootstrap3.version}</version>
</dependency>
<dependency>
<groupId>org.gwtbootstrap3</groupId>
<artifactId>gwtbootstrap3-extras</artifactId>
<version>${gwtbootstrap3.version}</version>
<scope>provided</scope>
</dependency>

<!-- GWT D3 -->
<dependency>
<groupId>com.github.gwtd3</groupId>
<artifactId>gwt-d3-api</artifactId>
<version>${gwt.d3.version}</version>
<scope>provided</scope>
</dependency>

<!-- GWT Gin -->
<dependency>
<groupId>com.google.gwt.inject</groupId>
<artifactId>gin</artifactId>
<version>${gin.version}</version>
<scope>provided</scope>
</dependency>

<!-- GWT MVP -->
<dependency>
<groupId>com.gwtplatform</groupId>
<artifactId>gwtp-mvp-client</artifactId>
<version>${gwtp.version}</version>
<scope>provided</scope>
</dependency>

<!-- RESTY GWT -->
<dependency>
<groupId>org.fusesource.restygwt</groupId>
<artifactId>restygwt</artifactId>
<version>${restygwt.version}</version>
<scope>provided</scope>
</dependency>

</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>${gwt.version}</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>test</goal>
<goal>resources</goal>
</goals>
</execution>
</executions>
<inherited>true</inherited>
<configuration>
<methodNameDisplayMode>NONE</methodNameDisplayMode>
<namespace>NONE</namespace>
<style>OBFUSCATED</style>
<sourceLevel>auto</sourceLevel>
<!--compileReport>true</compileReport>
<nocompilerMetrics>true</nocompilerMetrics-->
<nocheckCasts>true</nocheckCasts>
<noclassMetadata>true</noclassMetadata>
<clusterFunction>true</clusterFunction>
<inlineLiteralParameters>true</inlineLiteralParameters>
<optimizeDataflow>true</optimizeDataflow>
<!--noincrementalCompileWarnings>true</noincrementalCompileWarnings>
<enableJsonSoyc>true</enableJsonSoyc-->
<nooverlappingSourceWarnings>true</nooverlappingSourceWarnings>
<!--saveSource>true</saveSource>
<soycReport>true</soycReport>
<nodetailedSoyc>true</nodetailedSoyc-->
<optimize>9</optimize>
<!--logLevel>DEBUG</logLevel-->
<!--enableClosureCompiler>true</enableClosureCompiler-->
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<!--plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>8.1.16.v20140903</version>
</plugin-->
</plugins>
</build>


</project>
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.ontosoft</groupId>
<artifactId>ontosoft</artifactId>
<version>2.0-SNAPSHOT</version>
<version>2.1.0</version>
<name>OntoSoft</name>
<packaging>pom</packaging>

Expand Down
27 changes: 27 additions & 0 deletions pom.xml.versionsBackup
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

<modelVersion>4.0.0</modelVersion>
<groupId>org.ontosoft</groupId>
<artifactId>ontosoft</artifactId>
<version>2.0-SNAPSHOT</version>
<name>OntoSoft</name>
<packaging>pom</packaging>

<modules>
<module>shared</module>
<module>server</module>
<module>client</module>
</modules>

<distributionManagement>
<repository>
<id>github</id>
<name>GitHub OWNER Apache Maven Packages</name>
<url>https://maven.pkg.github.com/KnowledgeCaptureAndDiscovery/ontosoft</url>
</repository>
</distributionManagement>

</project>
2 changes: 1 addition & 1 deletion server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>org.ontosoft</groupId>
<artifactId>ontosoft</artifactId>
<version>2.0-SNAPSHOT</version>
<version>2.1.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
136 changes: 136 additions & 0 deletions server/pom.xml.versionsBackup
Original file line number Diff line number Diff line change
@@ -0,0 +1,136 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

<!-- POM file generated with GWT webAppCreator -->
<modelVersion>4.0.0</modelVersion>
<artifactId>ontosoft-server</artifactId>
<name>OntoSoft server</name>
<description>OntoSoft REST server</description>
<packaging>war</packaging>
<parent>
<groupId>org.ontosoft</groupId>
<artifactId>ontosoft</artifactId>
<version>2.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<properties>
<jersey.version>2.21</jersey.version>
<javax.rs-api.version>2.0.1</javax.rs-api.version>
<jackson.version>2.4.6</jackson.version>
<swagger.version>1.5.9</swagger.version>
<commons-configuration.version>1.10</commons-configuration.version>
<jbcrypt.version>0.3m</jbcrypt.version>
<java.version>1.7</java.version>
<webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<repositories>
<repository>
<id>github</id>
<name>Github</name>
<url>https://maven.pkg.github.com/KnowledgeCaptureAndDiscovery/ontapi</url>
</repository>
</repositories>


<dependencies>
<dependency>
<groupId>edu.isi.kcap</groupId>
<artifactId>ontapi</artifactId>
<version>1.2.4</version>
</dependency>

<!-- OntoSoft shared -->
<dependency>
<groupId>org.ontosoft</groupId>
<artifactId>ontosoft-shared</artifactId>
<version>${project.version}</version>
</dependency>

<!-- REST API -->
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
<version>${javax.rs-api.version}</version>
</dependency>

<!-- Jersey Server -->
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-servlet-core</artifactId>
<version>${jersey.version}</version>
</dependency>

<!-- Derby DB -->
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>10.11.1.1</version>
</dependency>

<!-- JSON Processing -->
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-json-jackson</artifactId>
<version>${jersey.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId>
<version>${jackson.version}</version>
</dependency>

<!-- Servlet API -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.0.1</version>
<scope>provided</scope>
</dependency>

<!-- Apache Commons Configuration -->
<dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
<version>${commons-configuration.version}</version>
</dependency>

<!-- Password encryption -->
<dependency>
<groupId>org.mindrot</groupId>
<artifactId>jbcrypt</artifactId>
<version>${jbcrypt.version}</version>
</dependency>

<!-- Swagger (OpenAPI) -->
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-jersey2-jaxrs</artifactId>
<version>${swagger.version}</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>8.1.16.v20140903</version>
</plugin>
</plugins>
</build>

</project>
2 changes: 1 addition & 1 deletion shared/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>org.ontosoft</groupId>
<artifactId>ontosoft</artifactId>
<version>2.0-SNAPSHOT</version>
<version>2.1.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
Loading

0 comments on commit 2f16fe4

Please sign in to comment.