eforms-sdk
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>eu.europa.ted.eforms</groupId> <artifactId>eforms-sdk</artifactId> <version>1.11.1</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.11.1</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://${sonatype.server.url}/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://${sonatype.server.url}/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.outputTimestamp>2024-08-12T09:40:24Z</project.build.outputTimestamp> <sonatype.server.url>s01.oss.sonatype.org</sonatype.server.url> <!-- Versions eForms --> <version.eforms-sdk-analyzer>1.11.0</version.eforms-sdk-analyzer> <!-- Versions - Plugins --> <version.dependency.plugin>3.5.0</version.dependency.plugin> <version.exec.plugin>3.1.0</version.exec.plugin> <version.install.plugin>2.5.2</version.install.plugin> <version.jar.plugin>3.3.0</version.jar.plugin> <version.nexus-staging.plugin>1.6.7</version.nexus-staging.plugin> </properties> <build> <resources> <resource> <directory>${basedir}</directory> <filtering>true</filtering> <targetPath>eforms-sdk</targetPath> <includes> <include>VERSION</include> </includes> </resource> <resource> <directory>${basedir}</directory> <targetPath>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>${version.install.plugin}</version> <configuration> <createChecksum>true</createChecksum> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>${version.jar.plugin}</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>${version.exec.plugin}</version> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${version.nexus-staging.plugin}</version> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>analyze</id> <dependencies> <dependency> <groupId>eu.europa.ted.eforms</groupId> <artifactId>eforms-sdk-analyzer</artifactId> <version>${version.eforms-sdk-analyzer}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <executions> <execution> <phase>validate</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>java</executable> <arguments> <argument>-Xmx5g</argument> <argument>-classpath</argument> <classpath/> <argument>eu.europa.ted.eforms.sdk.analysis.Application</argument> <argument>${project.basedir}</argument> </arguments> <classpath/> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <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> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://${sonatype.server.url}/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>