You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
141 lines
4.2 KiB
141 lines
4.2 KiB
<?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> |
|
<artifactId>spring-cloud-netflix-eureka-server</artifactId> |
|
<name>Spring Cloud Netflix Eureka Server</name> |
|
<url>http://projects.spring.io/spring-cloud/</url> |
|
<parent> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-netflix</artifactId> |
|
<version>1.0.0.BUILD-SNAPSHOT</version> |
|
<relativePath>..</relativePath> |
|
</parent> |
|
|
|
<properties> |
|
<spring-cloud.version>1.0.0.BUILD-SNAPSHOT</spring-cloud.version> |
|
<wro4j.version>1.7.6</wro4j.version> |
|
</properties> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-web</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<artifactId>spring-boot-starter-logging</artifactId> |
|
<groupId>org.springframework.boot</groupId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-log4j</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-freemarker</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<artifactId>spring-boot-starter-logging</artifactId> |
|
<groupId>org.springframework.boot</groupId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-netflix-core</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.netflix.eureka</groupId> |
|
<artifactId>eureka-client</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.sun.jersey</groupId> |
|
<artifactId>jersey-servlet</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.sun.jersey</groupId> |
|
<artifactId>jersey-server</artifactId> |
|
<scope>runtime</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.netflix.eureka</groupId> |
|
<artifactId>eureka-core</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.webjars</groupId> |
|
<artifactId>jquery</artifactId> |
|
<scope>runtime</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.webjars</groupId> |
|
<artifactId>bootstrap</artifactId> |
|
<scope>runtime</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.projectlombok</groupId> |
|
<artifactId>lombok</artifactId> |
|
<!-- Only needed at compile time --> |
|
<scope>provided</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-test</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
</dependencies> |
|
|
|
<build> |
|
<resources> |
|
<resource> |
|
<directory>${project.basedir}/src/main/resources</directory> |
|
</resource> |
|
<resource> |
|
<directory>${project.build.directory}/generated-resources</directory> |
|
</resource> |
|
</resources> |
|
<plugins> |
|
<plugin> |
|
<artifactId>maven-resources-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<id>copy-resources</id> |
|
<phase>validate</phase> |
|
<goals> |
|
<goal>copy-resources</goal> |
|
</goals> |
|
<configuration> |
|
<outputDirectory>${basedir}/target/wro</outputDirectory> |
|
<resources> |
|
<resource> |
|
<directory>src/main/wro</directory> |
|
<filtering>true</filtering> |
|
</resource> |
|
</resources> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<groupId>ro.isdc.wro4j</groupId> |
|
<artifactId>wro4j-maven-plugin</artifactId> |
|
<version>${wro4j.version}</version> |
|
<executions> |
|
<execution> |
|
<phase>generate-resources</phase> |
|
<goals> |
|
<goal>run</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
<configuration> |
|
<wroManagerFactory>ro.isdc.wro.maven.plugin.manager.factory.ConfigurableWroManagerFactory</wroManagerFactory> |
|
<cssDestinationFolder>${project.build.directory}/generated-resources/static/eureka/css</cssDestinationFolder> |
|
<wroFile>${project.build.directory}/wro/wro.xml</wroFile> |
|
<extraConfigFile>${basedir}/src/main/wro/wro.properties</extraConfigFile> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project>
|
|
|