Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

kie-issues#1123:unify maven projects configuration #2040

Merged
merged 4 commits into from
May 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 51 additions & 18 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>dev@kie.apache.org</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>dev-subscribe@kie.apache.org</subscribe>
<unsubscribe>dev-unsubscribe@kie.apache.org</unsubscribe>
<post>dev@kie.apache.org</post>
<archive>https://lists.apache.org/list.html?dev@kie.apache.org</archive>
</mailingList>
<mailingList>
<name>User List</name>
<subscribe>users-subscribe@kie.apache.org</subscribe>
<unsubscribe>users-unsubscribe@kie.apache.org</unsubscribe>
<post>users@kie.apache.org</post>
<archive>https://lists.apache.org/list.html?users@kie.apache.org</archive>
</mailingList>
<mailingList>
<name>Commits List</name>
<subscribe>commits-subscribe@kie.apache.org</subscribe>
<unsubscribe>commits-unsubscribe@kie.apache.org</unsubscribe>
<post>commits@kie.apache.org</post>
<archive>https://lists.apache.org/list.html?commits@kie.apache.org</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>
Expand All @@ -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>
Expand Down
Loading