sssom-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.incenp</groupId> <artifactId>sssom-java</artifactId> <version>1.5.0</version> </dependency>
<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>org.incenp</groupId> <artifactId>sssom-java</artifactId> <version>1.5.0</version> <packaging>pom</packaging> <name>SSSOM-Java</name> <description>SSSOM for Java and ROBOT</description> <url>https://incenp.org/dvlpt/sssom-java/</url> <licenses> <license> <name>GPL-3.0-or-later</name> <url>https://www.gnu.org/licenses/gpl-3.0-standalone.html</url> <distribution>manual</distribution> <comments>GNU General Public License v3.0 or later</comments> </license> <license> <name>BSD-3-Clause</name> </license> </licenses> <developers> <developer> <id>damien</id> <name>Damien Goutte-Gattat</name> <email>dgouttegattat@incenp.org</email> </developer> </developers> <scm> <connection>scm:git:https://github.com/gouttegd/sssom-java.git</connection> <developerConnection>scm:git:ssh://git@github.com/gouttegd/sssom-java.git</developerConnection> <url>https://github.com/gouttegd/sssom-java</url> <tag>sssom-java-1.5.0</tag> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/gouttegd/sssom-java.git</url> </issueManagement> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <site> <id>incenp</id> <url>https://incenp.org/dvlpt/sssom-java/</url> </site> </distributionManagement> <properties> <lombok.encoding>UTF-8</lombok.encoding> </properties> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.12.0</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.18.0</version> <scope>test</scope> </dependency> </dependencies> <modules> <module>core</module> <module>ext</module> <module>robot</module> <module>cli</module> </modules> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>3.6.3</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <configuration> <release>11</release> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>3.7.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.10.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <excludePackageNames>org.incenp.obofoundry.sssom.transform.parser,org.incenp.obofoundry.sssom.tests</excludePackageNames> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>3.1.1</version> <configuration> <goals>deploy</goals> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.7.0</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.5.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.12.1</version> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> <version>3.7.0</version> <reportSets> <reportSet /> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.10.0</version> <reportSets> <reportSet> <id>aggregate</id> <inherited>false</inherited> <reports> <report>aggregate</report> </reports> </reportSet> <reportSet> <id>default</id> <reports> </reports> </reportSet> </reportSets> <configuration> <excludePackageNames>org.incenp.obofoundry.sssom.transform.parser,org.incenp.obofoundry.sssom.cli,org.incenp.obofoundry.sssom.robot</excludePackageNames> </configuration> </plugin> </plugins> </reporting> </project>