pom.xml 1.1 KB
Newer Older
Y
Yiming Liu 已提交
1 2
<?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"
Y
Yiming Liu 已提交
3 4
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
	<parent>
5
		<groupId>com.ctrip.framework.apollo</groupId>
Y
Yiming Liu 已提交
6
		<artifactId>apollo</artifactId>
7
		<version>0.6.4-SNAPSHOT</version>
Y
Yiming Liu 已提交
8 9 10 11 12
		<relativePath>../pom.xml</relativePath>
	</parent>
	<modelVersion>4.0.0</modelVersion>
	<artifactId>apollo-buildtools</artifactId>
	<name>Apollo BuildTools</name>
Y
Yiming Liu 已提交
13 14 15 16
	<build>
		<plugins>
			<plugin>
				<artifactId>maven-resources-plugin</artifactId>
J
Jason Song 已提交
17
				<version>2.6</version>
Y
Yiming Liu 已提交
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
				<executions>
					<execution>
						<id>copy-resources</id>
						<phase>validate</phase>
						<goals>
							<goal>copy-resources</goal>
						</goals>
						<configuration>
							<outputDirectory>${basedir}/target</outputDirectory>
							<resources>
								<resource>
									<directory>src/main/scripts</directory>
								</resource>
							</resources>
						</configuration>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
Y
Yiming Liu 已提交
38
</project>