JMobileSuit
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.hit-refresh</groupId> <artifactId>JMobileSuit</artifactId> <version>1.2.0-alpha1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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> <name>JMobileSuit</name> <groupId>io.github.hit-refresh</groupId> <artifactId>JMobileSuit</artifactId> <version>1.2.0-alpha1</version> <organization> <name>io.github.hit-refresh</name> <url>https://hit-refresh.github.io/</url> </organization> <url>https://github.com/HIT-ReFreSH/JMobileSuit</url> <inceptionYear>2023</inceptionYear> <packaging>jar</packaging> <description>Light weight Mobile Suit for Java. Migrated from .NET Core.</description> <licenses> <license> <name>MIT</name> <url>https://www.mit.edu/~amini/LICENSE.md</url> </license> </licenses> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>21</java.version> <java.lang.version>${java.version}</java.lang.version> <spring.version>6.0.11</spring.version> <log4j.version>3.0.0-alpha1</log4j.version> </properties> <dependencies> <dependency> <groupId>io.github.hit-refresh</groupId> <artifactId>Jarvis</artifactId> <version>1.0.0</version> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>5.3.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-inline</artifactId> <version>4.6.1</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito2</artifactId> <version>2.0.0</version> <scope>test</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core --> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>${log4j.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api --> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <version>${log4j.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.springframework/spring-core --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>${spring.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.springframework/spring-context --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${spring.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.springframework/spring-beans --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>${spring.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.springframework/spring-expression --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-expression</artifactId> <version>${spring.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.springframework/spring-aop --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aop</artifactId> <version>${spring.version}</version> </dependency> </dependencies> <build> <finalName>${project.organization.name}.${project.name}.${project.version}</finalName> <defaultGoal>Package</defaultGoal> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <configuration> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <release>${java.version}</release> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.0</version> <configuration> <encoding>${project.build.sourceEncoding}</encoding> <charset>${project.build.sourceEncoding}</charset> <docencoding>${project.build.sourceEncoding}</docencoding> <locale>en_US</locale> <docletPath>${project.basedir}/docs/lib/docfx-doclet-1.9.0-jar-with-dependencies.jar </docletPath> <doclet>com.microsoft.doclet.DocFxDoclet</doclet> <useStandardDocletOptions>false</useStandardDocletOptions> <additionalOptions> -outputpath ${project.basedir}/docs/api -projectname ReFreSH.JMobileSuit </additionalOptions> <outputDirectory>docs/api</outputDirectory> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </pluginManagement> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </includes> </resource> </resources> </build> <profiles> <profile> <id>release</id> <build> <plugins> <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-resources-plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.3.1</version> <configuration> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <!-- https://mvnrepository.com/artifact/org.sonatype.plugins/nexus-staging-maven-plugin --> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>nexus-releases</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-gpg-plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <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.0.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-javadoc-plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.2</version> <configuration> <failOnError>false</failOnError> <doclint>none</doclint> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-release-plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>3.0.1</version> <configuration> <tagNameFormat>v@{project.version}</tagNameFormat> <autoVersionSubmodules>true</autoVersionSubmodules> </configuration> </plugin> </plugins> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </includes> </resource> </resources> </build> <distributionManagement> <snapshotRepository> <id>nexus-snapshots</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>nexus-releases</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </profile> <profile> <id>github</id> <build> <plugins> <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-resources-plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.3.1</version> <configuration> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <!-- https://mvnrepository.com/artifact/org.sonatype.plugins/nexus-staging-maven-plugin --> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>nexus-releases</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-gpg-plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <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.0.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-javadoc-plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.2</version> <configuration> <failOnError>false</failOnError> <doclint>none</doclint> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-release-plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>3.0.1</version> <configuration> <tagNameFormat>v@{project.version}</tagNameFormat> <autoVersionSubmodules>true</autoVersionSubmodules> </configuration> </plugin> </plugins> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </includes> </resource> </resources> </build> <distributionManagement> <repository> <id>github</id> <name>GitHub HIT-ReFreSH Apache Maven Packages</name> <url>https://maven.pkg.github.com/HIT-ReFreSH/JMobileSuit</url> </repository> </distributionManagement> </profile> </profiles> <scm> <url>https://github.com/HIT-ReFreSH/JMobileSuit</url> <connection>scm:git:https://github.com/HIT-ReFreSH/JMobileSuit.git</connection> <developerConnection>scm:git:https://github.com/HIT-ReFreSH/JMobileSuit.git</developerConnection> <tag>${project.version}</tag> </scm> <developers> <developer> <name>Ferdinand Sukhoi</name> <email>ferdinandsukhoi@outlook.com</email> <url>https://ferdinandsukhoi.github.io</url> </developer> <developer> <name>mahoshojoHCG</name> <email>yzy688@gmail.com</email> <url>https://github.com/mahoshojoHCG</url> </developer> <developer> <name>MrRuanCoder</name> <email>110537579+MrRuanCoder@users.noreply.github.com</email> <url>https://github.com/MrRuanCoder</url> </developer> <developer> <name>JonojiKatsuya</name> <email>1936826262@qq.com</email> <url>https://github.com/JonojiKatsuya</url> </developer> <developer> <name>wyh</name> <email>1146900419@qq.com</email> <url>https://github.com/wyh201202</url> </developer> <developer> <name>leeseetheloswer</name> <email>1443442148@qq.com</email> </developer> <developer> <name>Guo Yihang</name> <email>905479603@qq.com</email> </developer> <developer> <name>gwx</name> <email>xunhit@outlook.com</email> </developer> <developer> <name>cliang42</name> <email>cliang0911@163.com</email> </developer> <developer> <name>YoYi L</name> <email>liuhongzhi366@gmail.com</email> </developer> <developer> <name>2021111502</name> <email>3509461348@qq.com</email> </developer> <developer> <name>rpete</name> <email>rpete@icloud.com</email> </developer> <developer> <name>Xi</name> <email>Xi@gmail.com</email> </developer> </developers> </project>