metamodel
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.gauthierj</groupId>
<artifactId>metamodel</artifactId>
<version>1.0.0</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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.gauthierj</groupId>
<artifactId>metamodel</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<description>Java annotation processor that generates type-safe metamodel classes, enabling refactor-safe access to property names and paths at compile time.</description>
<url>https://github.com/gauthierj/metamodel</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://github.com/gauthierj/metamodel/blob/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Gauthier JACQUES</name>
<url>https://github.com/gauthierj</url>
</developer>
</developers>
<scm>
<url>https://github.com/gauthierj/metamodel</url>
<connection>scm:git:git@github.com:gauthierj/metamodel.git</connection>
<developerConnection>scm:git:ssh://github.com:gauthierj/metamodel.git</developerConnection>
</scm>
<distributionManagement>
<snapshotRepository>
<id>github</id>
<url>https://maven.pkg.github.com/gauthierj/metamodel</url>
</snapshotRepository>
</distributionManagement>
<modules>
<module>metamodel-annotation</module>
<module>metamodel-classbuilder</module>
<module>metamodel-generator</module>
<module>metamodel-integration-test</module>
<module>metamodel-model</module>
<module>metamodel-mongo-extension</module>
<module>metamodel-processor</module>
</modules>
<properties>
<java.version>17</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.github.gauthierj</groupId>
<artifactId>metamodel-annotation</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.gauthierj</groupId>
<artifactId>metamodel-classbuilder</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.gauthierj</groupId>
<artifactId>metamodel-generator</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.gauthierj</groupId>
<artifactId>metamodel-model</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.gauthierj</groupId>
<artifactId>metamodel-mongo-extension</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.gauthierj</groupId>
<artifactId>metamodel-processor</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M7</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>code-coverage</id>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.8</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadoc</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<passphrase>${env.MAVEN_GPG_PASSPHRASE}</passphrase>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
<arg>--trust-model</arg>
<arg>always</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.6.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
<waitUntil>published</waitUntil>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>