132 lines
4.4 KiB
XML
132 lines
4.4 KiB
XML
|
<?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">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>com.loafle</groupId>
|
||
|
<artifactId>maven_parent_jar</artifactId>
|
||
|
<version>1.0.0-RELEASE</version>
|
||
|
</parent>
|
||
|
|
||
|
<groupId>com.loafle</groupId>
|
||
|
<artifactId>overflow_dao</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
|
||
|
<properties>
|
||
|
<grpc.version>1.2.0</grpc.version>
|
||
|
<hibernate.version>4.3.10.Final</hibernate.version>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>io.grpc</groupId>
|
||
|
<artifactId>grpc-netty</artifactId>
|
||
|
<version>${grpc.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.grpc</groupId>
|
||
|
<artifactId>grpc-protobuf</artifactId>
|
||
|
<version>${grpc.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.grpc</groupId>
|
||
|
<artifactId>grpc-stub</artifactId>
|
||
|
<version>${grpc.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.mockito</groupId>
|
||
|
<artifactId>mockito-core</artifactId>
|
||
|
<version>1.9.5</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-entitymanager -->
|
||
|
<dependency>
|
||
|
<groupId>org.hibernate</groupId>
|
||
|
<artifactId>hibernate-entitymanager</artifactId>
|
||
|
<version>5.2.10.Final</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
|
||
|
<dependency>
|
||
|
<groupId>org.postgresql</groupId>
|
||
|
<artifactId>postgresql</artifactId>
|
||
|
<version>9.4-1200-jdbc41</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.codehaus.jackson</groupId>
|
||
|
<artifactId>jackson-mapper-asl</artifactId>
|
||
|
<version>1.9.13</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>com.loafle</groupId>
|
||
|
<artifactId>overflow_jpa_base_dao</artifactId>
|
||
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!--<dependency>-->
|
||
|
<!--<groupId>com.loafle</groupId>-->
|
||
|
<!--<artifactId>overflow_jpa_agent_dao</artifactId>-->
|
||
|
<!--<version>1.0.0-SNAPSHOT</version>-->
|
||
|
<!--</dependency>-->
|
||
|
|
||
|
<!--<dependency>-->
|
||
|
<!--<groupId>com.loafle</groupId>-->
|
||
|
<!--<artifactId>overflow_jpa_dao</artifactId>-->
|
||
|
<!--<version>1.0.0-SNAPSHOT</version>-->
|
||
|
<!--</dependency>-->
|
||
|
|
||
|
</dependencies>
|
||
|
|
||
|
|
||
|
<build>
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<directory>src/main/resources</directory>
|
||
|
<filtering>true</filtering>
|
||
|
</resource>
|
||
|
</resources>
|
||
|
<testResources>
|
||
|
<testResource>
|
||
|
<directory>src/test/resources</directory>
|
||
|
<filtering>true</filtering>
|
||
|
</testResource>
|
||
|
</testResources>
|
||
|
|
||
|
<extensions>
|
||
|
<extension>
|
||
|
<groupId>kr.motd.maven</groupId>
|
||
|
<artifactId>os-maven-plugin</artifactId>
|
||
|
<version>1.4.1.Final</version>
|
||
|
</extension>
|
||
|
</extensions>
|
||
|
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.xolstice.maven.plugins</groupId>
|
||
|
<artifactId>protobuf-maven-plugin</artifactId>
|
||
|
<version>0.5.0</version>
|
||
|
<configuration>
|
||
|
<protocArtifact>com.google.protobuf:protoc:3.2.0:exe:${os.detected.classifier}</protocArtifact>
|
||
|
<pluginId>grpc-java</pluginId>
|
||
|
<pluginArtifact>io.grpc:protoc-gen-grpc-java:${grpc.version}:exe:${os.detected.classifier}</pluginArtifact>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<goals>
|
||
|
<goal>compile</goal>
|
||
|
<goal>compile-custom</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
</project>
|