samly2-coretypes
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.imunity.samly</groupId> <artifactId>samly2-coretypes</artifactId> <version>1.4.0</version> </dependency>
<?xml version="1.0"?> <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>io.imunity.samly</groupId> <artifactId>samly2-coretypes</artifactId> <packaging>jar</packaging> <version>1.4.0</version> <name>SAMLtypes</name> <description>SAML standard XML type classes generated by XMLBeans</description> <url>https://unity-idm.eu</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <xmlbeans.version>5.3.0</xmlbeans.version> </properties> <scm> <connection>scm:git:git://github.com/unity-idm/saml-types.git</connection> <developerConnection>scm:git:ssh://git@github.com/unity-idm/saml-types.git</developerConnection> <url>https://github.com/unity-idm/saml-types</url> <tag>samly2-coretypes-1.4.0</tag> </scm> <licenses> <license> <name>BSD</name> <url>https://www.unity-idm.eu/opensource/</url> </license> </licenses> <developers> <developer> <name>Krzysztof Benedyczak</name> <organization>Bixbit</organization> <organizationUrl>https://unity-idm.eu</organizationUrl> </developer> </developers> <dependencies> <dependency> <groupId>org.apache.xmlbeans</groupId> <artifactId>xmlbeans</artifactId> <version>${xmlbeans.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.xmlbeans</groupId> <artifactId>xmlbeans</artifactId> <version>${xmlbeans.version}</version> <executions> <execution> <goals> <goal>compile</goal> </goals> </execution> </executions> <inherited>true</inherited> <configuration> <name>coretypes</name> <repackage>org.apache.xmlbeans.metadata</repackage> <sourceDir>src/main/schema</sourceDir> <sourceSchemas>*.xsd</sourceSchemas> <xmlConfigs>src/main/schema/xmlbeans_config.xsdconfig</xmlConfigs> </configuration> <dependencies> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>2.24.1</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</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.6.13</version> <extensions>true</extensions> <configuration> <serverId>sonatype-nexus-staging</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>javadoc</classifier> <classesDirectory>${project.basedir}/src/main/javadoc</classesDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> <configuration> <includeResources>true</includeResources> <includes> <include>**/*.xsd</include> </includes> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>