|
21 | 21 | </licenses> |
22 | 22 | <developers> |
23 | 23 | <developer> |
24 | | - <name>Maximilian Kühn</name> |
25 | | - <email>maximilian.kuehn@iosb.fraunhofer.de</email> |
26 | | - <organization>Fraunhofer IOSB</organization> |
| 24 | + <name>Michael Jacoby</name> |
| 25 | + <email>michael.jacoby@iosb.fraunhofer.de</email> |
| 26 | + <organization>Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V.</organization> |
27 | 27 | <organizationUrl>https://www.iosb.fraunhofer.de</organizationUrl> |
28 | 28 | </developer> |
29 | 29 | <developer> |
30 | | - <name>Michael Jacoby</name> |
31 | | - <email>michael.jacoby@iosb.fraunhofer.de</email> |
32 | | - <organization>Fraunhofer IOSB</organization> |
| 30 | + <name>Maximilian Kühn</name> |
| 31 | + <email>maximilian.kuehn@iosb.fraunhofer.de</email> |
| 32 | + <organization>Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V.</organization> |
33 | 33 | <organizationUrl>https://www.iosb.fraunhofer.de</organizationUrl> |
34 | 34 | </developer> |
35 | 35 | </developers> |
|
43 | 43 | <system>GitHub</system> |
44 | 44 | <url>https://github.com/eclipse-fa3st/fa3st-client/issues</url> |
45 | 45 | </issueManagement> |
46 | | - <properties></properties> |
47 | 46 | <dependencies> |
48 | 47 | <dependency> |
49 | 48 | <groupId>commons-fileupload</groupId> |
|
82 | 81 | <artifactId>wiremock-jetty12</artifactId> |
83 | 82 | </dependency> |
84 | 83 | </dependencies> |
| 84 | + <repositories> |
| 85 | + <repository> |
| 86 | + <releases> |
| 87 | + <enabled>true</enabled> |
| 88 | + </releases> |
| 89 | + <snapshots> |
| 90 | + <enabled>false</enabled> |
| 91 | + </snapshots> |
| 92 | + <id>bintray</id> |
| 93 | + <url>https://jcenter.bintray.com</url> |
| 94 | + </repository> |
| 95 | + <repository> |
| 96 | + <snapshots> |
| 97 | + <enabled>true</enabled> |
| 98 | + </snapshots> |
| 99 | + <id>central</id> |
| 100 | + <url>https://central.sonatype.com/repository/maven-snapshots/</url> |
| 101 | + </repository> |
| 102 | + </repositories> |
| 103 | + <pluginRepositories> |
| 104 | + <pluginRepository> |
| 105 | + <snapshots> |
| 106 | + <enabled>true</enabled> |
| 107 | + </snapshots> |
| 108 | + <id>dash-licenses-snapshots</id> |
| 109 | + <url>https://repo.eclipse.org/content/repositories/dash-licenses-snapshots/</url> |
| 110 | + </pluginRepository> |
| 111 | + <pluginRepository> |
| 112 | + <snapshots> |
| 113 | + <enabled>true</enabled> |
| 114 | + </snapshots> |
| 115 | + <id>maven-central</id> |
| 116 | + <url>https://repo.maven.apache.org/maven2</url> |
| 117 | + </pluginRepository> |
| 118 | + </pluginRepositories> |
| 119 | + <profiles> |
| 120 | + <profile> |
| 121 | + <id>ci</id> |
| 122 | + <build> |
| 123 | + <plugins> |
| 124 | + <plugin> |
| 125 | + <groupId>org.eclipse.dash</groupId> |
| 126 | + <artifactId>license-tool-plugin</artifactId> |
| 127 | + <version>${maven.plugin.dash.version}</version> |
| 128 | + <executions> |
| 129 | + <execution> |
| 130 | + <id>license-check</id> |
| 131 | + <goals> |
| 132 | + <goal>license-check</goal> |
| 133 | + </goals> |
| 134 | + </execution> |
| 135 | + </executions> |
| 136 | + </plugin> |
| 137 | + </plugins> |
| 138 | + </build> |
| 139 | + </profile> |
| 140 | + <profile> |
| 141 | + <id>release</id> |
| 142 | + <properties> |
| 143 | + <maven.javadoc.skip>false</maven.javadoc.skip> |
| 144 | + <maven.test.skip>true</maven.test.skip> |
| 145 | + </properties> |
| 146 | + <build> |
| 147 | + <plugins> |
| 148 | + <plugin> |
| 149 | + <groupId>org.apache.maven.plugins</groupId> |
| 150 | + <artifactId>maven-source-plugin</artifactId> |
| 151 | + <version>${maven.plugin.source.version}</version> |
| 152 | + <executions> |
| 153 | + <execution> |
| 154 | + <id>attach-sources</id> |
| 155 | + <goals> |
| 156 | + <goal>jar-no-fork</goal> |
| 157 | + </goals> |
| 158 | + <phase>verify</phase> |
| 159 | + </execution> |
| 160 | + </executions> |
| 161 | + </plugin> |
| 162 | + <plugin> |
| 163 | + <groupId>org.apache.maven.plugins</groupId> |
| 164 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 165 | + <version>${maven.plugin.javadoc.version}</version> |
| 166 | + <inherited>false</inherited> |
| 167 | + <configuration> |
| 168 | + <quiet>true</quiet> |
| 169 | + <sourceFileExcludes>**/generated-sources/*</sourceFileExcludes> |
| 170 | + <sourcepath>${project.build.directory}/target</sourcepath> |
| 171 | + </configuration> |
| 172 | + <executions> |
| 173 | + <execution> |
| 174 | + <id>attach-javadocs</id> |
| 175 | + <goals> |
| 176 | + <goal>aggregate-jar</goal> |
| 177 | + </goals> |
| 178 | + </execution> |
| 179 | + </executions> |
| 180 | + </plugin> |
| 181 | + <plugin> |
| 182 | + <groupId>org.apache.maven.plugins</groupId> |
| 183 | + <artifactId>maven-gpg-plugin</artifactId> |
| 184 | + <version>${maven.plugin.gpg.version}</version> |
| 185 | + <executions> |
| 186 | + <execution> |
| 187 | + <id>sign-artifacts</id> |
| 188 | + <goals> |
| 189 | + <goal>sign</goal> |
| 190 | + </goals> |
| 191 | + <phase>verify</phase> |
| 192 | + </execution> |
| 193 | + </executions> |
| 194 | + </plugin> |
| 195 | + <plugin> |
| 196 | + <groupId>org.sonatype.central</groupId> |
| 197 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 198 | + <version>${maven.plugin.central-publishing.version}</version> |
| 199 | + <extensions>true</extensions> |
| 200 | + <configuration> |
| 201 | + <publishingServerId>central</publishingServerId> |
| 202 | + <autoPublish>true</autoPublish> |
| 203 | + <waitUntil>published</waitUntil> |
| 204 | + <centralSnapshotsUrl>https://central.sonatype.com/repository/maven-snapshots/</centralSnapshotsUrl> |
| 205 | + </configuration> |
| 206 | + </plugin> |
| 207 | + </plugins> |
| 208 | + </build> |
| 209 | + </profile> |
| 210 | + <profile> |
| 211 | + <id>owasp</id> |
| 212 | + <properties> |
| 213 | + <maven.javadoc.skip>true</maven.javadoc.skip> |
| 214 | + <maven.test.skip>true</maven.test.skip> |
| 215 | + </properties> |
| 216 | + <build> |
| 217 | + <plugins> |
| 218 | + <plugin> |
| 219 | + <groupId>org.owasp</groupId> |
| 220 | + <artifactId>dependency-check-maven</artifactId> |
| 221 | + </plugin> |
| 222 | + </plugins> |
| 223 | + </build> |
| 224 | + </profile> |
| 225 | + </profiles> |
85 | 226 | </project> |
0 commit comments