You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
130 lines
3.3 KiB
130 lines
3.3 KiB
<project xmlns="http://maven.apache.org/POM/4.0.0" |
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<groupId>dev.kske</groupId> |
|
<artifactId>event-bus</artifactId> |
|
<version>1.0.0</version> |
|
<packaging>pom</packaging> |
|
|
|
<name>Event Bus</name> |
|
<description>An event handling framework for Java utilizing annotations.</description> |
|
<url>https://git.kske.dev/kske/event-bus</url> |
|
|
|
<modules> |
|
<module>event-bus-core</module> |
|
<module>event-bus-proc</module> |
|
</modules> |
|
|
|
<licenses> |
|
<license> |
|
<name>Apache License, Version 2.0</name> |
|
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> |
|
<distribution>repo</distribution> |
|
<comments>A business-friendly OSS license</comments> |
|
</license> |
|
</licenses> |
|
|
|
<developers> |
|
<developer> |
|
<id>kske</id> |
|
<name>Kai S. K. Engelbart</name> |
|
<email>kai@kske.dev</email> |
|
<url>https://kske.dev</url> |
|
<roles> |
|
<role>architect</role> |
|
<role>developer</role> |
|
</roles> |
|
<timezone>Europe/Berlin</timezone> |
|
</developer> |
|
</developers> |
|
|
|
<scm> |
|
<connection>scm:git:https://git.kske.dev/kske/event-bus.git</connection> |
|
<developerConnection>scm:git:ssh://git@git.kske.dev:420/kske/event-bus.git</developerConnection> |
|
<url>https://git.kske.dev/kske/event-bus</url> |
|
</scm> |
|
|
|
<properties> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
|
<maven.compiler.source>11</maven.compiler.source> |
|
<maven.compiler.target>11</maven.compiler.target> |
|
</properties> |
|
|
|
<!-- Configure deployment to OSSRH --> |
|
<distributionManagement> |
|
<snapshotRepository> |
|
<id>ossrh</id> |
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url> |
|
</snapshotRepository> |
|
<repository> |
|
<id>ossrh</id> |
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
|
</repository> |
|
</distributionManagement> |
|
|
|
<build> |
|
|
|
<!-- Disable test resource folder --> |
|
<testResources /> |
|
|
|
<plugins> |
|
|
|
<!-- Support Java 9 modules --> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>3.8.1</version> |
|
</plugin> |
|
|
|
<!-- Attach sources to JAR --> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-source-plugin</artifactId> |
|
<version>3.2.1</version> |
|
<executions> |
|
<execution> |
|
<id>attach-sources</id> |
|
<goals> |
|
<goal>jar</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
|
|
<!-- Attach Javadoc to JAR --> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-javadoc-plugin</artifactId> |
|
<version>3.2.0</version> |
|
<executions> |
|
<execution> |
|
<id>attach-javadocs</id> |
|
<goals> |
|
<goal>jar</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
|
|
<!-- GPG sign JAR --> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-gpg-plugin</artifactId> |
|
<version>1.6</version> |
|
<executions> |
|
<execution> |
|
<id>sign-artifacts</id> |
|
<phase>verify</phase> |
|
<goals> |
|
<goal>sign</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
|
|
</plugins> |
|
</build> |
|
</project>
|
|
|