forked from apache/incubator-kie-kogito-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
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 (apache#2040)
* kie-issues#1123:unify maven projects configuration * adjust deploy operation * Revert "adjust deploy operation" This reverts commit 49603f3. * add missing bits --------- Co-authored-by: jstastny-cz <[email protected]>
- Loading branch information
1 parent
dca5474
commit 8769a1f
Showing
1 changed file
with
51 additions
and
18 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 |
---|---|---|
|
@@ -37,6 +37,57 @@ | |
<name>Kogito Apps</name> | ||
<description>Kogito Apps</description> | ||
|
||
<organization> | ||
<name>The Apache Software Foundation</name> | ||
<url>https://apache.org/</url> | ||
</organization> | ||
<licenses> | ||
<license> | ||
<name>The Apache Software License, Version 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
|
||
<scm> | ||
<connection>scm:git:https://github.com/apache/incubator-kie-kogito-apps.git</connection> | ||
<developerConnection>scm:git:https://github.com/apache/incubator-kie-kogito-apps.git</developerConnection> | ||
<url>https://github.com/apache/incubator-kie-kogito-apps</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.outputTimestamp>2024-01-16T00:00:00Z</project.build.outputTimestamp> | ||
<version.maven.artifact.plugin>3.4.1</version.maven.artifact.plugin> | ||
|
@@ -57,24 +108,6 @@ | |
</pluginManagement> | ||
</build> | ||
|
||
<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> | ||
|
||
<modules> | ||
<module>kogito-apps-bom</module> | ||
<module>kogito-apps-build-parent</module> | ||
|