mtanalyze
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.mtanalyze</groupId>
<artifactId>mtanalyze</artifactId>
<version>1.0.10</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.mtanalyze</groupId>
<artifactId>mtanalyze</artifactId>
<name>MT Analyze</name>
<version>1.0.10</version>
<description>Desktop application for analyzing SWIFT MT financial messages.</description>
<url>https://www.mtanalyze.com</url>
<developers>
<developer>
<id>rschwarz</id>
<name>Ralf Michael Schwarz</name>
<email>r.schwarz@centerscout.com</email>
<organization>Centerscout GmbH</organization>
<organizationUrl>https://www.centerscout.com</organizationUrl>
</developer>
</developers>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/mtanalyze/mtanalyze.git</connection>
<developerConnection>scm:git:ssh://github.com/mtanalyze/mtanalyze.git</developerConnection>
<url>https://github.com/mtanalyze/mtanalyze</url>
</scm>
<organization>
<name>Centerscout GmbH</name>
<url>https://www.centerscout.de</url>
</organization>
<build>
<resources>
<resource>
<filtering>true</filtering>
<directory>src/main/resources</directory>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.5.0</version>
<configuration>
<archive>
<manifest>
<mainClass>com.mtanalyze.MtAnalyze</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.6.2</version>
<executions>
<execution>
<id>shade-fat-jar</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<finalName>MT-Analyze-${project.version}</finalName>
<transformers>
<transformer>
<mainClass>com.mtanalyze.MtAnalyze</mainClass>
</transformer>
<transformer />
<transformer />
</transformers>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/MANIFEST.MF</exclude>
<exclude>META-INF/versions/*/module-info.class</exclude>
<exclude>module-info.class</exclude>
</excludes>
</filter>
<filter>
<artifact>org.apache.xmlbeans:xmlbeans</artifact>
<excludes>
<exclude>META-INF/maven/**</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>de.thetaphi</groupId>
<artifactId>forbiddenapis</artifactId>
<version>3.10</version>
<executions>
<execution>
<id>no-network-apis</id>
<goals>
<goal>check</goal>
</goals>
<configuration>
<signatures>java.net.Socket @ No outbound network connections allowed
java.net.ServerSocket @ No outbound network connections allowed
java.net.URL#openConnection() @ No outbound network connections allowed
java.net.URL#openStream() @ No outbound network connections allowed
java.net.HttpURLConnection @ No outbound network connections allowed
java.net.http.HttpClient @ No outbound network connections allowed
java.net.http.HttpRequest @ No outbound network connections allowed</signatures>
<failOnUnsupportedJava>false</failOnUnsupportedJava>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>central</id>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<id>shade-fat-jar</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>all</shadedClassifierName>
<transformers>
<transformer>
<mainClass>com.mtanalyze.MtAnalyze</mainClass>
</transformer>
<transformer />
<transformer />
</transformers>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/MANIFEST.MF</exclude>
<exclude>META-INF/versions/*/module-info.class</exclude>
<exclude>module-info.class</exclude>
</excludes>
</filter>
<filter>
<artifact>org.apache.xmlbeans:xmlbeans</artifact>
<excludes>
<exclude>META-INF/maven/**</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<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>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.2</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.7</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.7.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
<waitUntil>uploaded</waitUntil>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<properties>
<maven.compiler.release>17</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>