-
Notifications
You must be signed in to change notification settings - Fork 383
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kie-issues#1123:unify maven projects configuration
- Loading branch information
jstastny-cz
committed
Apr 26, 2024
1 parent
e31a5e2
commit ab35b43
Showing
1 changed file
with
41 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,6 +44,7 @@ | |
<name>JBoss by Red Hat</name> | ||
<url>http://www.jboss.org/</url> | ||
</organization> | ||
|
||
<licenses> | ||
<license> | ||
<name>Apache Software License, Version 2.0</name> | ||
|
@@ -52,6 +53,46 @@ | |
</license> | ||
</licenses> | ||
|
||
<scm> | ||
<connection>scm:git:https://github.com/apache/incubator-kie-kogito-examples.git</connection> | ||
<developerConnection>scm:git:[email protected]:apache/incubator-kie-kogito-examples.git</developerConnection> | ||
<url>https://github.com/apache/incubator-kie-kogito-examples</url> | ||
</scm> | ||
|
||
<developers> | ||
<developer> | ||
<name>The Apache KIE Team</name> | ||
<email>[email protected]</email> | ||
<url>https://kie.apache.org</url> | ||
<organization>Apache Software Foundation</organization> | ||
<organizationUrl>http://apache.org/</organizationUrl> | ||
</developer> | ||
</developers> | ||
|
||
<mailingLists> | ||
<mailingList> | ||
<name>Development List</name> | ||
<subscribe>[email protected]</subscribe> | ||
<unsubscribe>[email protected]</unsubscribe> | ||
<post>[email protected]</post> | ||
<archive>https://lists.apache.org/[email protected]</archive> | ||
</mailingList> | ||
<mailingList> | ||
<name>User List</name> | ||
<subscribe>[email protected]</subscribe> | ||
<unsubscribe>[email protected]</unsubscribe> | ||
<post>[email protected]</post> | ||
<archive>https://lists.apache.org/[email protected]</archive> | ||
</mailingList> | ||
<mailingList> | ||
<name>Commits List</name> | ||
<subscribe>[email protected]</subscribe> | ||
<unsubscribe>[email protected]</unsubscribe> | ||
<post>[email protected]</post> | ||
<archive>https://lists.apache.org/[email protected]</archive> | ||
</mailingList> | ||
</mailingLists> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
|
||
|
@@ -77,80 +118,6 @@ | |
<version.maven.artifact.plugin>3.4.1</version.maven.artifact.plugin> | ||
</properties> | ||
|
||
<!-- distributionManagement section --> | ||
<distributionManagement> | ||
<repository> | ||
<id>apache-release-staging-repository</id> | ||
<name>Apache Release Staging Repository</name> | ||
<url>https://repository.apache.org/service/local/staging/deploy/maven2</url> | ||
</repository> | ||
<snapshotRepository> | ||
<id>apache-snapshots-repository</id> | ||
<name>Apache Snapshot Repository</name> | ||
<url>https://repository.apache.org/content/repositories/snapshots/</url> | ||
</snapshotRepository> | ||
</distributionManagement> | ||
|
||
<repositories> | ||
<!-- Bootstrap repository to locate the parent pom when the parent pom | ||
has not been build locally. --> | ||
<repository> | ||
<id>apache-public-repository-group</id> | ||
<name>Apache Public Repository Group</name> | ||
<url>https://repository.apache.org/content/groups/public/</url> | ||
<layout>default</layout> | ||
<releases> | ||
<enabled>true</enabled> | ||
<updatePolicy>never</updatePolicy> | ||
</releases> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
<updatePolicy>daily</updatePolicy> | ||
</snapshots> | ||
</repository> | ||
</repositories> | ||
|
||
<pluginRepositories> | ||
<pluginRepository> | ||
<!-- Duplicating the Maven Central repository here (as it is already coming from Super POM) makes the build much faster, | ||
as the Maven Central is now treated as the first (default) repository (because it is before the Apache Nexus one). | ||
Artifacts with release (fixed) versions are being downloaded primarily from there. Without the central being the | ||
first repository the Apache Nexus would be contacted first and since it is quite slow it slows down the build. | ||
We use Apache Nexus repo only to download our SNAPSHOTs. --> | ||
<id>central</id> | ||
<name>Central Repository</name> | ||
<url>https://repo.maven.apache.org/maven2</url> | ||
<layout>default</layout> | ||
<snapshots> | ||
<enabled>false</enabled> | ||
</snapshots> | ||
</pluginRepository> | ||
<pluginRepository> | ||
<id>apache-public-repository-group</id> | ||
<name>Apache Public Repository Group</name> | ||
<url>https://repository.apache.org/content/groups/public/</url> | ||
<releases> | ||
<enabled>true</enabled> | ||
</releases> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
</snapshots> | ||
</pluginRepository> | ||
</pluginRepositories> | ||
|
||
<scm> | ||
<connection>scm:git:https://github.com/apache/incubator-kie-kogito-examples.git</connection> | ||
<developerConnection>scm:git:[email protected]:apache/incubator-kie-kogito-examples.git</developerConnection> | ||
<url>https://github.com/apache/incubator-kie-kogito-examples</url> | ||
</scm> | ||
|
||
<developers> | ||
<developer> | ||
<name>All developers are listed in the KIE GitHub organization</name> | ||
<url>https://github.com/orgs/kiegroup/people</url> | ||
</developer> | ||
</developers> | ||
|
||
<profiles> | ||
<profile> | ||
<id>default</id> | ||
|
@@ -271,13 +238,6 @@ | |
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<version>${version.deploy.plugin}</version> | ||
<configuration> | ||
<retryFailedDeploymentCount>10</retryFailedDeploymentCount> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>${version.compiler.plugin}</version> | ||
|