meta-open
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.acanx.meta</groupId> <artifactId>meta-open</artifactId> <version>0.2.5</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>com.acanx.meta</groupId> <artifactId>meta-open</artifactId> <version>0.2.5</version> <packaging>pom</packaging> <name>Meta-Open</name> <description>Meta Open POM</description> <url>https://acanx.com</url> <inceptionYear>2025</inceptionYear> <organization> <name>ACANX</name> <url>https://acanx.com</url> </organization> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>ACANX</name> <email>acanx@qq.com</email> <organization>ACANX</organization> </developer> </developers> <modules> <module>meta-model</module> <module>meta-component</module> </modules> <scm> <connection>scm:git:git@github.com:ACANX/MetaOpen.git</connection> <developerConnection>scm:git:git@github.com:ACANX/MetaOpen.git</developerConnection> <tag>V0.2.x</tag> <url>git@github.com:ACANX/MetaOpen.git</url> </scm> <properties> <maven.compiler.release>11</maven.compiler.release> <central-publishing-maven-plugin.version>0.8.0</central-publishing-maven-plugin.version> <java.version>11</java.version> <maven-source-plugin.version>3.3.1</maven-source-plugin.version> <maven-gpg-plugin.version>3.2.6</maven-gpg-plugin.version> <maven-compiler-plugin.version>3.14.0</maven-compiler-plugin.version> <fastjson2.version>2.0.57</fastjson2.version> <flatten-maven-plugin.version>1.6.0</flatten-maven-plugin.version> <revision>0.2.5</revision> <lombok.version>1.18.38</lombok.version> <maven-javadoc-plugin.version>3.10.0</maven-javadoc-plugin.version> <junit-jupiter.version>5.13.2</junit-jupiter.version> <maven-surefire-plugin.version>3.5.0</maven-surefire-plugin.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven-deploy-plugin.version>3.1.2</maven-deploy-plugin.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>com.acanx.meta</groupId> <artifactId>os-dependencies</artifactId> <version>0.2.5</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit-jupiter.version}</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>sonatype-oss-release</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> <version>${flatten-maven-plugin.version}</version> <executions> <execution> <id>flatten</id> <phase>process-resources</phase> <goals> <goal>flatten</goal> </goals> </execution> <execution> <id>flatten.clean</id> <phase>clean</phase> <goals> <goal>clean</goal> </goals> </execution> </executions> <configuration> <updatePomFile>true</updatePomFile> <flattenMode>resolveCiFriendliesOnly</flattenMode> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <charset>${project.build.sourceEncoding}</charset> <encoding>${project.build.sourceEncoding}</encoding> <docencoding>${project.build.sourceEncoding}</docencoding> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <executable>D:\ProgramExt\GnuPG\bin\gpg.exe</executable> </configuration> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>${maven-deploy-plugin.version}</version> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>${central-publishing-maven-plugin.version}</version> <extensions>true</extensions> <configuration> <publishingServerId>sonatype-nexus-snapshots</publishingServerId> <autoPublish>true</autoPublish> <centralBaseUrl>https://central.sonatype.com</centralBaseUrl> <deploymentName>Meta-Open-Deployment</deploymentName> </configuration> </plugin> </plugins> </build> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <url>https://central.sonatype.com/repository/maven-snapshots/</url> </snapshotRepository> </distributionManagement> </profile> </profiles> </project>