netex-utils
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>no.entur.abt</groupId> <artifactId>netex-utils</artifactId> <version>1.48</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>no.entur.abt</groupId> <artifactId>netex-utils</artifactId> <version>1.48</version> <packaging>jar</packaging> <name>Netex utils</name> <description>Netex utility classes</description> <properties> <junit-jupiter.version>5.11.4</junit-jupiter.version> <maven-javadoc-plugin.version>3.11.2</maven-javadoc-plugin.version> <maven-source-plugin.version>3.3.0</maven-source-plugin.version> <maven.compiler.plugin.version>3.13.0</maven.compiler.plugin.version> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <spotless.version>2.44.2</spotless.version> </properties> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit-jupiter.version}</version> <scope>test</scope> </dependency> <!-- and the engine for surefire and failsafe --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit-jupiter.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <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> <phase>package</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.plugin.version}</version> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>2.5.0</version> <configuration> <organizationName>Entur</organizationName> <inceptionYear>2019</inceptionYear> <licenseFile>LICENSE.txt</licenseFile> <licenseName>eupl_v1_1</licenseName> <includes> <include>**/*.java</include> </includes> </configuration> <executions> <execution> <id>check-license-header</id> <goals> <goal>update-file-header</goal> </goals> <phase>initialize</phase> </execution> </executions> </plugin> <plugin> <groupId>com.github.ekryd.sortpom</groupId> <artifactId>sortpom-maven-plugin</artifactId> <version>4.0.0</version> <configuration> <predefinedSortOrder>custom_1</predefinedSortOrder> <nrOfIndentSpace>4</nrOfIndentSpace> <lineSeparator>\n</lineSeparator> <sortProperties>true</sortProperties> <keepBlankLines>false</keepBlankLines> <createBackupFile>false</createBackupFile> <sortDependencies>scope</sortDependencies> </configuration> <executions> <execution> <goals> <goal>sort</goal> </goals> <phase>initialize</phase> </execution> </executions> </plugin> </plugins> </build> <url>https://github.com/entur/netex-utils</url> <organization> <name>Entur AS</name> <url>http://www.entur.org/</url> </organization> <licenses> <license> <name>EUPL-1.2 with modifications</name> <url>https://joinup.ec.europa.eu/software/page/eupl</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Arne Seime</name> <email>arne.seime@entur.org</email> <organization>Entur</organization> <organizationUrl>http://www.entur.org</organizationUrl> </developer> <developer> <name>Dainius Figoras</name> <email>dainius.figoras@entur.org</email> <organization>Entur</organization> <organizationUrl>http://www.entur.org</organizationUrl> </developer> </developers> <scm> <connection>scm:git:ssh://git@github.com/entur/netex-utils.git</connection> <developerConnection>scm:git:ssh://git@github.com/entur/netex-utils.git</developerConnection> <url>https://github.com/entur/netex-utils/tree/main</url> <tag>HEAD</tag> </scm> <profiles> <profile> <id>entur-maven-central-local</id> <activation> <activeByDefault>false</activeByDefault> </activation> <distributionManagement> <repository> <id>entur-maven-central-local</id> <name>Entur maven central local</name> <url>https://entur2.jfrog.io/entur2/entur-maven-central-release-local</url> </repository> </distributionManagement> </profile> <profile> <id>release</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <id>sign-artifacts</id> <goals> <goal>sign</goal> </goals> <phase>verify</phase> <configuration> <passphrase>${env.SONATYPE_GPG_KEY_PASSWORD}</passphrase> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</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-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <configuration> <source>${maven.compiler.source}</source> <doclint>none</doclint> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>codestyle</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <executions> <execution> <goals> <goal>check</goal> </goals> <phase>validate</phase> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.12</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <!-- attached to Maven test phase --> <execution> <id>report-test</id> <goals> <goal>report</goal> </goals> <phase>test</phase> </execution> <execution> <id>report-integration-test</id> <goals> <goal>report</goal> </goals> <phase>integration-test</phase> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>