eforms-sdk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>eu.europa.ted.eforms</groupId>
<artifactId>eforms-sdk</artifactId>
<version>1.4.3</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>eu.europa.ted.eforms</groupId>
<artifactId>eforms-sdk</artifactId>
<version>1.4.3</version>
<packaging>jar</packaging>
<name>eForms SDK</name>
<description>
eForms is the notification standard for public procurement procedures in the EU.
The eForms SDK is a collection of resources providing the foundation for building eForms applications.
</description>
<url>https://docs.ted.europa.eu/eforms/latest/</url>
<licenses>
<license>
<name>Creative Commons Attribution 4.0 International Public License</name>
<url>https://creativecommons.org/licenses/by/4.0/legalcode.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>TED and EU Public Procurement Unit</name>
<email>OP-TED-DEVOPS@publications.europa.eu</email>
<organization>Publications Office of the European Union</organization>
<organizationUrl>https://op.europa.eu/</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/OP-TED/eForms-SDK.git</connection>
<url>https://github.com/OP-TED/eForms-SDK.git</url>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<resources>
<resource>
<directory>${basedir}</directory>
<targetPath>${project.build.outputDirectory}/eforms-sdk</targetPath>
<excludes>
<exclude>**/.antlr/</exclude>
<exclude>.classpath</exclude>
<exclude>.git*/**</exclude>
<exclude>.mvn/</exclude>
<exclude>.project</exclude>
<exclude>.settings/</exclude>
<exclude>.vscode/</exclude>
<exclude>pom.xml</exclude>
<exclude>mvnw*</exclude>
<exclude>target/</exclude>
</excludes>
</resource>
</resources>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
<configuration>
<createChecksum>true</createChecksum>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<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-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.4.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<!-- Prevent gpg from using pinentry programs -->
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>