forked from jboss/jboss-javaee-concurrency-api_spec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
117 lines (106 loc) · 3.93 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
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jboss</groupId>
<artifactId>jboss-parent</artifactId>
<version>9</version>
</parent>
<groupId>org.jboss.spec.javax.enterprise.concurrency</groupId>
<artifactId>jboss-concurrency-api_1.0_spec</artifactId>
<version>1.0.0.Final-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Concurrency Utilities API</name>
<description>JSR-000236 Concurrency Utilities API</description>
<licenses>
<!-- unknown -->
</licenses>
<scm>
<connection>scm:git:[email protected]:jboss/jboss-concurrency-api_spec.git</connection>
<developerConnection>scm:git:[email protected]:jboss/jboss-concurrency-api_spec.git</developerConnection>
<url>https://github.com/jboss/jboss-conc-api_spec</url>
</scm>
<build>
<plugins>
<!-- Include LICENSE.txt in the META-INF directory -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-resources</id>
<phase>process-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<resources>
<resource>
<directory>${basedir}</directory>
<includes>
<include>LICENSE</include>
<include>README</include>
</includes>
</resource>
</resources>
<outputDirectory>${project.build.outputDirectory}/META-INF</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<!-- Generate the OSGi jar Manifest. -->
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifest>
<addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
</manifest>
</archive>
<instructions>
<Specification-Title>JSR-000236 Concurrency Utilities API</Specification-Title>
<Specification-Vendor>Oracle</Specification-Vendor>
<Specification-Version>7</Specification-Version>
<!-- Set the package version to match the spec version -->
<Export-Package>
javax.enterprise.concurrency.*;version=7
</Export-Package>
</instructions>
</configuration>
</plugin>
<!-- Add the OSGi Manifest to the main jar -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Specification-Title>JSR-000236 Concurrency Utilities API</Specification-Title>
<Specification-Vendor>Oracle</Specification-Vendor>
<Specification-Version>7</Specification-Version>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>