parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.joinedworkz</groupId> <artifactId>parent</artifactId> <version>1.3.67</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project> <modelVersion>4.0.0</modelVersion> <groupId>org.joinedworkz</groupId> <artifactId>parent</artifactId> <version>1.3.67</version> <packaging>pom</packaging> <name>JoinedWorkz parent</name> <description>DSL based modeling framework - parent</description> <url>http://www.joinedworkz.org</url> <licenses> <license> <name>JoinedSystems Commercial License</name> <url>http://joinedworkz.org/license/joinedsystems-commercial-license.html</url> <distribution>repo</distribution> </license> </licenses> <organization> <name>JoinedSystems e.U.</name> <url>http://www.joinedsystems.com/</url> </organization> <developers> <developer> <name>Karl Hönninger</name> <organization>JoinedSystems e.U.</organization> <organizationUrl>http://www.joinedsystems.com/</organizationUrl> </developer> </developers> <scm> <url>http://gitlab.joinedsystems.com/groups/joinedworkz</url> </scm> <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <xtextVersion>2.38.0</xtextVersion> </properties> <profiles> <profile> <id>public</id> <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> </profile> </profiles> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> </plugins> </build> </project>