|
26 | 26 | <version>1.0-SNAPSHOT</version>
|
27 | 27 | <packaging>pom</packaging>
|
28 | 28 |
|
| 29 | + <name>DEEP Java Agent</name> |
| 30 | + <description>Java agent for DEEP</description> |
| 31 | + |
| 32 | + <url>https://intergral.com</url> |
| 33 | + |
| 34 | + <licenses> |
| 35 | + <license> |
| 36 | + <name>AGPL-3.0-only</name> |
| 37 | + <url>https://github.com/intergral/deep-java-client/blob/master/LICENSE</url> |
| 38 | + <distribution>repo</distribution> |
| 39 | + </license> |
| 40 | + </licenses> |
| 41 | + |
| 42 | + <organization> |
| 43 | + <name>Intergral GmbH</name> |
| 44 | + <url>https://intergral.com</url> |
| 45 | + </organization> |
| 46 | + |
| 47 | + <scm> |
| 48 | + <url>https://github.com/intergral/deep-java-client</url> |
| 49 | + </scm> |
| 50 | + |
| 51 | + <issueManagement> |
| 52 | + <system>github</system> |
| 53 | + <url>https://github.com/intergral/deep-java-client</url> |
| 54 | + </issueManagement> |
| 55 | + |
| 56 | + <developers> |
| 57 | + <developer> |
| 58 | + <name>Intergral GmbH</name> |
| 59 | + <id>intergral</id> |
| 60 | + <organization>Intergral Information Solutions GmbH</organization> |
| 61 | + |
| 62 | + <timezone>+1</timezone> |
| 63 | + <organizationUrl>https://www.intergral.com</organizationUrl> |
| 64 | + </developer> |
| 65 | + <developer> |
| 66 | + <name>Ben Donnelly</name> |
| 67 | + <id>bdonnell</id> |
| 68 | + <organization>Intergral GmbH</organization> |
| 69 | + |
| 70 | + </developer> |
| 71 | + </developers> |
| 72 | + |
29 | 73 | <modules>
|
30 | 74 | <module>agent-api</module>
|
31 | 75 | <module>agent</module>
|
|
61 | 105 | <module>examples</module>
|
62 | 106 | </modules>
|
63 | 107 | </profile>
|
| 108 | + |
| 109 | + <!--This profile will deal with releasing the jar--> |
| 110 | + <profile> |
| 111 | + <id>release-ossrh</id> |
| 112 | + <activation> |
| 113 | + <activeByDefault>false</activeByDefault> |
| 114 | + </activation> |
| 115 | + <distributionManagement> |
| 116 | + <snapshotRepository> |
| 117 | + <id>ossrh</id> |
| 118 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 119 | + </snapshotRepository> |
| 120 | + <repository> |
| 121 | + <id>ossrh</id> |
| 122 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 123 | + </repository> |
| 124 | + </distributionManagement> |
| 125 | + <build> |
| 126 | + <pluginManagement> |
| 127 | + <plugins> |
| 128 | + <plugin> |
| 129 | + <groupId>org.sonatype.plugins</groupId> |
| 130 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 131 | + <version>1.6.8</version> |
| 132 | + </plugin> |
| 133 | + <plugin> |
| 134 | + <groupId>org.apache.maven.plugins</groupId> |
| 135 | + <artifactId>maven-gpg-plugin</artifactId> |
| 136 | + <version>1.6</version> |
| 137 | + </plugin> |
| 138 | + </plugins> |
| 139 | + </pluginManagement> |
| 140 | + <plugins> |
| 141 | + <plugin> |
| 142 | + <groupId>org.sonatype.plugins</groupId> |
| 143 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 144 | + <extensions>true</extensions> |
| 145 | + <configuration> |
| 146 | + <serverId>ossrh</serverId> |
| 147 | + <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
| 148 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 149 | + </configuration> |
| 150 | + </plugin> |
| 151 | + <plugin> |
| 152 | + <groupId>org.apache.maven.plugins</groupId> |
| 153 | + <artifactId>maven-gpg-plugin</artifactId> |
| 154 | + <executions> |
| 155 | + <execution> |
| 156 | + <id>sign-artifacts</id> |
| 157 | + <phase>verify</phase> |
| 158 | + <goals> |
| 159 | + <goal>sign</goal> |
| 160 | + </goals> |
| 161 | + <configuration> |
| 162 | + <passphrase>${env.GPG_PASSPHRASE}</passphrase> |
| 163 | + <gpgArguments> |
| 164 | + <!--https://stackoverflow.com/questions/28859942/how-do-i-get-the-maven-gpg-plugin-to-use-a-passphrase-from-environment-variable--> |
| 165 | + <arg>--pinentry-mode</arg> |
| 166 | + <arg>loopback</arg> |
| 167 | + |
| 168 | + <argument>--no-tty</argument> |
| 169 | + <argument>--batch</argument> |
| 170 | + </gpgArguments> |
| 171 | + <executable>gpg</executable> |
| 172 | + <keyname>0x8FD157B6</keyname> |
| 173 | + </configuration> |
| 174 | + </execution> |
| 175 | + </executions> |
| 176 | + </plugin> |
| 177 | + </plugins> |
| 178 | + </build> |
| 179 | + </profile> |
64 | 180 | </profiles>
|
65 | 181 |
|
66 | 182 | <dependencyManagement>
|
|
0 commit comments