This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
pom.xml
117 lines (104 loc) · 3.22 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
<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>dev.galasa</groupId>
<artifactId>dev.galasa.wrapping.parent</artifactId>
<version>0.38.0</version>
<packaging>pom</packaging>
<name>Galasa OSGi Wrapping</name>
<description>Wraps non-OSGi JARs into OSGi Bundles for use in the Galasa Ecosystem</description>
<url>https://galasa.dev</url>
<licenses>
<license>
<name>Eclipse Public License - v 2.0</name>
<url>https://www.eclipse.org/legal/epl-2.0</url>
</license>
</licenses>
<developers>
<developer>
<name>Galasa Contributors</name>
<email>[email protected]</email>
<organization>Linux Foundation</organization>
<organizationUrl>https://github.com/galasa-dev</organizationUrl>
</developer>
</developers>
<modules>
<module>com.auth0.jwt</module>
<module>com.jcraft.jsch</module>
<module>com.google.gson</module>
<module>jakarta.transaction</module>
<module>dev.galasa.wrapping.io.grpc.java</module>
<module>kafka.clients</module>
</modules>
<scm>
<url>https://github.com/galasa-dev/wrapping</url>
<connection>scm:git:git:://github.com/galasa-dev/wrapping</connection>
<developerConnection>scm:git:git:://github.com/galasa-dev/wrapping</developerConnection>
</scm>
<issueManagement>
<url>https://github.com/galasa-dev/projectmanagement/issues</url>
<system>GitHub</system>
</issueManagement>
<distributionManagement>
<repository>
<id>galasa.release.repo</id>
<url>${galasa.release.repo}</url>
</repository>
<snapshotRepository>
<id>galasa.snapshot.repo</id>
<url>${galasa.snapshot.repo}</url>
</snapshotRepository>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>5.1.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.1</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>