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.
125 lines
3.7 KiB
125 lines
3.7 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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
<parent> |
|
<!-- Your own application should inherit from spring-boot-starter-parent --> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-samples</artifactId> |
|
<version>${revision}</version> |
|
</parent> |
|
<artifactId>spring-boot-sample-data-cassandra</artifactId> |
|
<name>Spring Boot Data Cassandra Sample</name> |
|
<description>Spring Boot Data Cassandra Sample</description> |
|
<properties> |
|
<main.basedir>${basedir}/../..</main.basedir> |
|
</properties> |
|
<dependencies> |
|
<!-- Compile --> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-data-cassandra</artifactId> |
|
</dependency> |
|
<!-- Test --> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-test</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.cassandraunit</groupId> |
|
<artifactId>cassandra-unit-spring</artifactId> |
|
<version>3.0.0.1</version> |
|
<scope>test</scope> |
|
</dependency> |
|
</dependencies> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.codehaus.mojo</groupId> |
|
<artifactId>build-helper-maven-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<id>reserve-cassandra-port</id> |
|
<goals> |
|
<goal>reserve-network-port</goal> |
|
</goals> |
|
<phase>process-resources</phase> |
|
<configuration> |
|
<portNames> |
|
<portName>cassandra.port.native-transport</portName> |
|
<portName>cassandra.port.storage</portName> |
|
</portNames> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-surefire-plugin</artifactId> |
|
<configuration> |
|
<systemPropertyVariables> |
|
<spring.data.cassandra.port>${cassandra.port.native-transport}</spring.data.cassandra.port> |
|
<cassandra.native_transport_port>${cassandra.port.native-transport}</cassandra.native_transport_port> |
|
<cassandra.storage_port>${cassandra.port.storage}</cassandra.storage_port> |
|
</systemPropertyVariables> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
</plugin> |
|
</plugins> |
|
<pluginManagement> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.eclipse.m2e</groupId> |
|
<artifactId>lifecycle-mapping</artifactId> |
|
<version>1.0.0</version> |
|
<configuration> |
|
<lifecycleMappingMetadata> |
|
<pluginExecutions> |
|
<pluginExecution> |
|
<pluginExecutionFilter> |
|
<groupId>org.codehaus.mojo</groupId> |
|
<artifactId>build-helper-maven-plugin</artifactId> |
|
<versionRange>[1.9.1,)</versionRange> |
|
<goals> |
|
<goal>reserve-network-port</goal> |
|
</goals> |
|
</pluginExecutionFilter> |
|
<action> |
|
<ignore /> |
|
</action> |
|
</pluginExecution> |
|
</pluginExecutions> |
|
</lifecycleMappingMetadata> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</pluginManagement> |
|
</build> |
|
<profiles> |
|
<profile> |
|
<id>java9</id> |
|
<activation> |
|
<jdk>[9,)</jdk> |
|
</activation> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-surefire-plugin</artifactId> |
|
<configuration> |
|
<skipTests>true</skipTests> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</profile> |
|
</profiles> |
|
</project>
|
|
|