dream-first-extjs-plugin-platform
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.yelong0216.dream.first</groupId> <artifactId>dream-first-extjs-plugin-platform</artifactId> <version>2.1.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>com.github.yelong0216.dream.first</groupId> <artifactId>dream-first-extjs-plugin-platform</artifactId> <version>2.1.0</version> <name>dream-first-extjs-plugin-platform</name> <description>dreamfirst-extjs平台插件</description> <url>https://github.com/yelong0216/dream-first-extjs-plugin-platform.git</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>yelong</name> <email>yelong010216@163.com</email> </developer> </developers> <scm> <url>https://github.com/yelong0216/dream-first-extjs-plugin-platform</url> </scm> <properties> <dream-first.version>[2.1.0,2.2.0)</dream-first.version> <dream-first-extjs.version>${dream-first.version}</dream-first-extjs.version> <dream-first-extjs-base.version>${dream-first.version}</dream-first-extjs-base.version> </properties> <dependencies> <dependency> <groupId>com.github.yelong0216.dream.first</groupId> <artifactId>dream-first-extjs-base</artifactId> <version>${dream-first-extjs-base.version}</version> </dependency> <dependency> <groupId>com.github.yelong0216.dream.first</groupId> <artifactId>dream-first-extjs</artifactId> <version>${dream-first-extjs.version}</version> </dependency> <dependency> <groupId>com.cocoon</groupId> <artifactId>cocoon-platform</artifactId> <version>1.0.0</version> <scope>system</scope> <systemPath>${basedir}/src/main/resources/lib/cocoon-platform-1.0.0.jar</systemPath> </dependency> <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.7.0-M1</version> <scope>test</scope> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.47</version><!--$NO-MVN-MAN-VER$ --> <scope>test</scope> </dependency> </dependencies> <repositories> <repository> <id>spring-milestones</id> <name>Spring Milestones</name> <url>https://repo.spring.io/milestone</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> <profiles> <profile> <id>release</id> <build> <resources> <!-- 表示把java目录下的有关xml文件,properties文件编译/打包的时候放在resource目录下 --> <resource> <directory>src/main/java</directory> <includes> <include>**/*.*</include> </includes> <excludes> <exclude>**/*.jar</exclude> </excludes> <filtering>false</filtering> </resource> <resource> <directory>src/main/resources</directory> <includes> <include>**/*.*</include> </includes> <excludes> <exclude>**/*.jar</exclude> </excludes> <filtering>false</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <configuration> <source>1.8</source> <target>1.8</target> <testSource>1.8</testSource> <testTarget>1.8</testTarget> </configuration> </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> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <configuration> <aggregate>true</aggregate> <charset>UTF-8</charset> <encoding>UTF-8</encoding> <docencoding>UTF-8</docencoding> <doclint>none</doclint> <additionalparam>-Xdoclint:none</additionalparam> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>yelong</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>yelong</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </profile> </profiles> </project>