structural-type
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>codes.rafael.structuraltype</groupId>
<artifactId>structural-type</artifactId>
<version>1.13</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>codes.rafael.structuraltype</groupId>
<artifactId>structural-type</artifactId>
<version>1.13</version>
<packaging>pom</packaging>
<properties>
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
<sonar.jacoco.reportPath>${project.build.directory}/jacoco.exec</sonar.jacoco.reportPath>
</properties>
<name>Structural types for Java</name>
<description>
This project aims to create a structural representation of similar nominal Java classes. A structural type is
represented by an interface that contains property accessors for all properties that are defined by those
classes. For each class, a projection class is generated that implements that interface for delegation to the
nominal classes for which the structure was created. Additionally, a template implementation is created that
implements the structural interface as a Java bean.
</description>
<url>https://github.com/raphw/skatteprosessen-structural-type</url>
<scm>
<connection>scm:git:git://github.com/raphw/skatteprosessen-structural-type.git</connection>
<developerConnection>scm:git:git@github.com:raphw/skatteprosessen-structural-type.git</developerConnection>
<url>http://github.com/raphw/skatteprosessen-structural-type/tree/master</url>
<tag>structural-type-1.13</tag>
</scm>
<developers>
<developer>
<name>Rafael Winterhalter</name>
<email>rafael.wth@gmail.com</email>
<organization>Skatteetaten</organization>
<organizationUrl>https://rafael.codes</organizationUrl>
</developer>
</developers>
<modules>
<module>structural-type-api</module>
<module>structural-type-generator</module>
<module>structural-type-maven-plugin</module>
<module>structural-type-jackson</module>
</modules>
<inceptionYear>2020</inceptionYear>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<release>11</release>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.7</version>
<configuration>
<destFile>${sonar.jacoco.reportPath}</destFile>
<append>true</append>
</configuration>
<executions>
<execution>
<id>agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<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</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalOptions>-package</additionalOptions>
</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>
<autoPublish>true</autoPublish>
<publishingServerId>central</publishingServerId>
</configuration>
</plugin>
</plugins>
</build>
</project>