|
|
|
@ -8,71 +8,17 @@
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<artifactId>hippo4j-server</artifactId>
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<maven.deploy.skip>true</maven.deploy.skip>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.hippo4j</groupId>
|
|
|
|
|
<artifactId>hippo4j-console</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Adapter start -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.xml.bind</groupId>
|
|
|
|
|
<artifactId>jaxb-api</artifactId>
|
|
|
|
|
<version>2.3.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.sun.xml.bind</groupId>
|
|
|
|
|
<artifactId>jaxb-impl</artifactId>
|
|
|
|
|
<version>2.3.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.sun.xml.bind</groupId>
|
|
|
|
|
<artifactId>jaxb-core</artifactId>
|
|
|
|
|
<version>2.3.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.activation</groupId>
|
|
|
|
|
<artifactId>activation</artifactId>
|
|
|
|
|
<version>1.1.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Adapter end -->
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>repackage</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>com.spotify</groupId>
|
|
|
|
|
<artifactId>docker-maven-plugin</artifactId>
|
|
|
|
|
<version>1.2.2</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<imageName>${project.artifactId}:${project.version}</imageName>
|
|
|
|
|
<dockerDirectory>${project.basedir}</dockerDirectory>
|
|
|
|
|
<resources>
|
|
|
|
|
<resource>
|
|
|
|
|
<targetPath>/</targetPath>
|
|
|
|
|
<directory>${project.build.directory}</directory>
|
|
|
|
|
<include>${project.build.finalName}.jar</include>
|
|
|
|
|
</resource>
|
|
|
|
|
</resources>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
<modules>
|
|
|
|
|
<module>hippo4j-auth</module>
|
|
|
|
|
<module>hippo4j-bootstrap</module>
|
|
|
|
|
<module>hippo4j-config</module>
|
|
|
|
|
<module>hippo4j-console</module>
|
|
|
|
|
<module>hippo4j-discovery</module>
|
|
|
|
|
</modules>
|
|
|
|
|
</project>
|
|
|
|
|