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 #2270

Merged
merged 1 commit 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
45 changes: 39 additions & 6 deletions packages/maven-base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@
</licenses>

<scm>
<connection>scm:git:git@github.com:apache/incubator-kie-tools.git</connection>
<developerConnection>scm:git:git@github.com:apache/incubator-kie-tools.git</developerConnection>
<url>scm:git:git@github.com:apache/incubator-kie-tools.git</url>
<connection>scm:git:https://github.com/apache/incubator-kie-tools.git</connection>
<developerConnection>scm:git:https://github.com/apache/incubator-kie-tools.git</developerConnection>
<url>https://github.com/apache/incubator-kie-tools</url>
<tag>HEAD</tag>
</scm>

Expand All @@ -63,6 +63,39 @@
<url>https://github.com/apache/incubator-kie-issues/issues</url>
</issueManagement>

<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-12T00:00:00Z</project.build.outputTimestamp>
<version.maven.artifact.plugin>3.4.1</version.maven.artifact.plugin>
Expand Down Expand Up @@ -114,9 +147,9 @@
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.kie.kogito</groupId>
<artifactId>kogito-quarkus-test-utils</artifactId>
<version>${version.org.kie.kogito}</version>
<groupId>org.kie.kogito</groupId>
<artifactId>kogito-quarkus-test-utils</artifactId>
<version>${version.org.kie.kogito}</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down
Loading