nodeGroupStoreService
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.ge.research.semtk</groupId>
<artifactId>nodeGroupStoreService</artifactId>
<version>2.2.2</version>
</dependency><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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.ge.research.semtk</groupId>
<artifactId>semtk-oss</artifactId>
<version>2.2.2</version>
</parent>
<artifactId>nodeGroupStoreService</artifactId>
<version>2.2.2</version>
<name>nodeGroupStoreService</name>
<description>store and retrieve a nodegroup for "canned" queries. </description>
<dependencies>
<!-- License: Apache 2.0 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<!-- <version>1.3.1.RELEASE</version> -->
</dependency>
<!-- License: Apache 2.0 -->
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>com.ge.research.semtk</groupId>
<artifactId>sparqlGraphLibrary</artifactId>
<version>2.2.2</version>
</dependency>
<!-- License: Apache 2.0 -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>${swagger.version}</version>
</dependency>
<!-- License: Apache 2.0 -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>${swagger.version}</version>
</dependency>
<dependency>
<groupId>com.ge.research.semtk</groupId>
<artifactId>sparqlGraphIngestionService</artifactId>
<version>2.2.2</version>
</dependency>
<dependency>
<groupId>com.ge.research.semtk</groupId>
<artifactId>springUtilLibrary</artifactId>
<version>2.2.2</version>
</dependency>
</dependencies>
<properties>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<!-- <version>1.3.1.RELEASE</version> -->
<configuration>
<mainClass>com.ge.research.semtk.services.nodegroupStore.service.ServiceApplication</mainClass>
</configuration>
</plugin>
</plugins>
</build>
</project>