gim-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.gettyio</groupId> <artifactId>gim-java</artifactId> <version>1.1.6-rc</version> </dependency>
<?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/xsd/maven-4.0.0.xsd"> <parent> <artifactId>gim</artifactId> <groupId>com.gettyio</groupId> <version>1.1.6-rc</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>gim-java</artifactId> <packaging>jar</packaging> <dependencies> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java-util</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>com.gettyio</groupId> <artifactId>getty-core</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>com.gettyio</groupId> <artifactId>getty-expansion</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>com.gettyio</groupId> <artifactId>gim-common</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>compile</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <configuration> <source>7</source> <target>7</target> </configuration> </plugin> </plugins> </build> </project>