summaryrefslogtreecommitdiff
path: root/galaxy-eureka-server/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'galaxy-eureka-server/pom.xml')
-rw-r--r--galaxy-eureka-server/pom.xml86
1 files changed, 0 insertions, 86 deletions
diff --git a/galaxy-eureka-server/pom.xml b/galaxy-eureka-server/pom.xml
deleted file mode 100644
index d4073f5..0000000
--- a/galaxy-eureka-server/pom.xml
+++ /dev/null
@@ -1,86 +0,0 @@
-<?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>galaxy-data-platform</artifactId>
- <groupId>com.mesalab</groupId>
- <version>1.0-SNAPSHOT</version>
- </parent>
-
- <modelVersion>4.0.0</modelVersion>
- <artifactId>galaxy-eureka-server</artifactId>
- <packaging>jar</packaging>
-
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-security</artifactId>
- </dependency>
- </dependencies>
-
- <build>
- <finalName>galaxy-eureka-server</finalName>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>2.0.1.RELEASE</version>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <includeSystemScope>true</includeSystemScope>
- <mainClass>com.mesalab.eureka.GalaxyEurekaServerApp</mainClass>
- </configuration>
- </plugin>
- <plugin>
- <groupId>com.spotify</groupId>
- <artifactId>docker-maven-plugin</artifactId>
- <version>1.0.0</version>
- <configuration>
- <serverId>153-docker-repo</serverId>
- <registryUrl>${docker.registry}:${docker.registry.port}</registryUrl>
- <pushImage>true</pushImage>
- <imageName>${docker.registry}:${docker.registry.port}/${docker.image.prefix}/${project.artifactId}
- </imageName>
- <forceTags>true</forceTags>
- <dockerHost>http://192.168.40.153:2375</dockerHost>
- <dockerDirectory>docker</dockerDirectory>
- <buildArgs>
- <JDK_IMAGE>192.168.40.153:9080/common/jdk:1.8.0_73</JDK_IMAGE>
- <JAR_FILE>${project.build.finalName}.jar</JAR_FILE>
- </buildArgs>
- <resources>
- <resource>
- <targetPath>/</targetPath>
- <directory>${project.build.directory}</directory>
- <include>${project.build.finalName}.jar</include>
- </resource>
- <resource>
- <targetPath>/config</targetPath>
- <directory>config</directory>
- </resource>
- </resources>
- </configuration>
- </plugin>
- </plugins>
- </build>
-</project> \ No newline at end of file