1 Star 0 Fork 1

Cinwell / WebIDE-Frontend-Webjars

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 3.76 KB
一键复制 编辑 原始数据 按行查看 历史
vangie 提交于 2017-04-07 11:34 . add travis
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
</parent>
<packaging>jar</packaging>
<groupId>net.coding.ide</groupId>
<artifactId>frontend</artifactId>
<version>${version}</version>
<name>WebIDE Frontend</name>
<description>WebJar for WebIDE Frontend</description>
<url>https://coding.net</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<destDir>${project.build.outputDirectory}/META-INF/resources/webjars</destDir>
<distDir>${project.basedir}/../frontend/build</distDir>
</properties>
<developers>
<developer>
<id>tanhe123</id>
<name>Hehe Tan</name>
<email>xiayule148@gmail.com</email>
</developer>
</developers>
<licenses>
<license>
<name>BSD 3.0</name>
<url>https://opensource.org/licenses/BSD-3-Clause</url>
<distribution>repo</distribution>
</license>
</licenses>
<build>
<plugins>
<plugin>
<groupId>com.jamesward</groupId>
<artifactId>unsnapshot-maven-plugin</artifactId>
<version>0.2</version>
<executions>
<execution>
<phase>initialize</phase>
<goals>
<goal>unsnapshot</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<phase>process-resources</phase>
<goals><goal>run</goal></goals>
<configuration>
<target>
<!-- copy dist file -->
<copy todir="${destDir}">
<fileset dir="${distDir}"/>
</copy>
</target>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.1</version>
</plugin>
<plugin>
<groupId>com.googlecode.todomap</groupId>
<artifactId>maven-jettygzip-plugin</artifactId>
<version>0.0.4</version>
<configuration>
<webappDirectory>target/classes</webappDirectory>
<outputDirectory>target/classes</outputDirectory>
</configuration>
<executions>
<execution>
<phase>prepare-package</phase>
<goals>
<goal>process</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>default</id>
<properties>
<version>1.0.0</version>
</properties>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
</profiles>
</project>
1
https://gitee.com/cinwell/WebIDE-Frontend-Webjars.git
git@gitee.com:cinwell/WebIDE-Frontend-Webjars.git
cinwell
WebIDE-Frontend-Webjars
WebIDE-Frontend-Webjars
master

搜索帮助