-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
154 lines (137 loc) · 6.3 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<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>
<groupId>com.instaclustr</groupId>
<artifactId>everywhere-strategy-parent</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<modules>
<module>cassandra-2.2</module>
<module>cassandra-3.0</module>
<module>cassandra-3.11</module>
<module>cassandra-4</module>
<module>cassandra-4.1</module>
</modules>
<name>everywhere-strategy-parent</name>
<description>Parent for Cassandra EverywhereStrategy implementations</description>
<url>https://github.com/instaclustr/cassandra-everywhere-strategy</url>
<inceptionYear>2020</inceptionYear>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Adam Zegelin</name>
<organization>Instaclustr</organization>
<organizationUrl>https://www.instaclustr.com</organizationUrl>
<email>adam@instaclustr.com</email>
</developer>
<developer>
<name>Stefan Miklosovic</name>
<organization>Instaclustr</organization>
<organizationUrl>https://www.instaclustr.com</organizationUrl>
<email>stefan.miklosovic@instaclustr.com</email>
</developer>
</developers>
<organization>
<name>Instaclustr</name>
<url>https://instaclustr.com</url>
</organization>
<scm>
<connection>scm:git:git://git@github.com:instaclustr/cassandra-everywhere-strategy.git</connection>
<developerConnection>scm:git:ssh://github.com/instaclustr/cassandra-everywhere-strategy.git</developerConnection>
<url>git://github.com/instaclustr/cassandra-everywhere-strategy.git</url>
</scm>
<properties>
<maintainer>Adam Zegelin <adam@instaclustr.com></maintainer>
<version.jdeb>1.8</version.jdeb>
<version.rpm>1.5.0</version.rpm>
<version.maven.release.plugin>2.5.3</version.maven.release.plugin>
<outputDirectory>${project.build.directory}</outputDirectory>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<outputDirectory>${outputDirectory}</outputDirectory>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${version.maven.release.plugin}</version>
<configuration>
<pushChanges>false</pushChanges>
<tagNameFormat>v@{project.version}</tagNameFormat>
</configuration>
</plugin>
<plugin>
<groupId>org.vafer</groupId>
<artifactId>jdeb</artifactId>
<version>${version.jdeb}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jdeb</goal>
</goals>
<configuration>
<name>${project.artifactId}</name>
<deb>${outputDirectory}/[[name]]_${project.version}.deb</deb>
<dataSet>
<data>
<src>${outputDirectory}/${project.build.finalName}.jar</src>
<type>file</type>
<mapper>
<type>perm</type>
<prefix>/usr/share/cassandra/lib</prefix>
</mapper>
</data>
</dataSet>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>de.dentrassi.maven</groupId>
<artifactId>rpm</artifactId>
<version>${version.rpm}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>rpm</goal>
</goals>
<configuration>
<packageName>${project.artifactId}</packageName>
<group>Applications/Databases</group>
<packager>${maintainer}</packager>
<skipSigning>true</skipSigning>
<entries>
<entry>
<name>/usr/share/cassandra/lib/${project.build.finalName}.jar</name>
<file>${outputDirectory}/${project.build.finalName}.jar</file>
</entry>
</entries>
<targetDir>${outputDirectory}</targetDir>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>