forked from ehcache/ehcache-jcache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
executable file
·83 lines (77 loc) · 3.14 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
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>net.sf.ehcache</groupId>
<name>Ehcache JCache Parent Pom</name>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
<!--Fixes broken Maven 3 warning-->
<relativePath/>
</parent>
<artifactId>ehcache-jcache-parent</artifactId>
<packaging>pom</packaging>
<version>1.4.0-beta2-SNAPSHOT</version>
<description><![CDATA[Parent project for Ehcache's implementation of JSR107 - JCACHE.]]> </description>
<properties>
<net.sf.ehcache.speedAdjustmentFactor>2</net.sf.ehcache.speedAdjustmentFactor>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<javax.cache.version>0.4</javax.cache.version>
</properties>
<modules>
<module>ehcache-jcache</module>
<module>jcache-tck-runner</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>javax.cache</groupId>
<artifactId>cache-api</artifactId>
<version>${javax.cache.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<profiles>
<profile>
<!--Only releases need to be signed. Use mvn -Prelease clean deploy to deploy releases -->
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<!-- Note: site URL repeated here to ensure correct deployment path -->
<distributionManagement>
<!--
The server id here defined must also appear in ~/.m2/settings.xml with username
-->
<repository>
<id>sourceforge-releases</id>
<name>Sourceforge Release Repository</name>
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
<snapshotRepository>
<id>sourceforge-snapshots</id>
<name>Sourceforge Snapshot Repository</name>
<url>http://oss.sonatype.org/content/repositories/sourceforge-snapshots</url>
</snapshotRepository>
</distributionManagement>
</project>