1 Star 1 Fork 25

mgbin / AJAXJS Framework

forked from frank42a / AJAXJS Framework 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
ajaxjs-maven-global.xml 4.31 KB
一键复制 编辑 原始数据 按行查看 历史
frank42a 提交于 2018-11-17 17:38 . update
<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>com.ajaxjs</groupId>
<artifactId>ajaxjs-parent</artifactId>
<version>1.0</version>
<packaging>pom</packaging>
<modules>
<!-- 模块都写在此处 -->
<module>ajaxjs-data</module>
</modules>
<!-- Common Start -->
<url>https://framework.ajaxjs.com</url>
<scm>
<url>https://gitee.com/sp42_admin/ajaxjs/tree/master/ajaxjs-base</url>
<connection>scm:git:git@gitee.com:sp42_admin/ajaxjs.git</connection>
<developerConnection>scm:git:git@gitee.com:sp42_admin/ajaxjs.git</developerConnection>
<tag></tag>
</scm>
<issueManagement>
<url>https://gitee.com/sp42_admin/ajaxjs/issues</url>
</issueManagement>
<inceptionYear>2013</inceptionYear>
<organization>
<name>AJAXJS</name>
<url>https://framework.ajaxjs.com</url>
</organization>
<developers>
<developer>
<name>Frank Cheung</name>
<email>frank@ajaxjs.com</email>
</developer>
</developers>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<build>
<!-- 指定源码所在的目录 -->
<!-- <sourceDirectory>src/main</sourceDirectory> -->
<!-- 指定单元测试代码所在的目录 -->
<!-- <testSourceDirectory>src/test</testSourceDirectory> -->
<!-- 这两个目录中的文件也会分别被复制到 target/classes 和 target/test-classes 目录中。 -->
<!-- <resources> -->
<!-- <resource> -->
<!-- <directory>src/main</directory> -->
<!-- <excludes> -->
<!-- <exclude>**/*.java</exclude> 排除 Java 文件 -->
<!-- </excludes> -->
<!-- </resource> -->
<!-- </resources> -->
<!-- <testResources> -->
<!-- <testResource> -->
<!-- <directory>src/test</directory> -->
<!-- <excludes> -->
<!-- <exclude>**/*.java</exclude> -->
<!-- </excludes> -->
<!-- </testResource> -->
<!-- </testResources> -->
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<!-- 发布到中央库 -->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<!-- 加密签名 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- 生成 java 源码 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- 生成 javadoc 文档 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration> <!-- add this to disable checking -->
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Java
1
https://gitee.com/mgb/ajaxjs.git
git@gitee.com:mgb/ajaxjs.git
mgb
ajaxjs
AJAXJS Framework
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891