-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
93 lines (86 loc) · 3.58 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<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>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>org.webjars</groupId>
<artifactId>sammy</artifactId>
<version>0.7.4-SNAPSHOT</version>
<name>sammy</name>
<description>WebJar for Sammy.js</description>
<url>http://webjars.org</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://github.com/quirkey/sammy/blob/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>http://github.com/webjars/sammy</url>
<connection>scm:git:https://github.com/webjars/sammy.git</connection>
<developerConnection>scm:git:https://github.com/webjars/sammy.git</developerConnection>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<id>mbockus</id>
<name>Mike Bockus</name>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<sammy.version>0.7.4</sammy.version>
<sammy.version.commit>b7019809302c87ea07f2d454d9c28855ea441cdf</sammy.version.commit>
<downloadUrl>https://raw.github.com/quirkey/sammy</downloadUrl>
<destinationDir>${project.build.outputDirectory}/META-INF/resources/webjars/${project.artifactId}/${sammy.version}</destinationDir>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>wagon-maven-plugin</artifactId>
<version>1.0-beta-4</version>
<executions>
<execution>
<id>download-js</id>
<phase>process-resources</phase>
<goals><goal>download-single</goal></goals>
<configuration>
<url>${downloadUrl}/${sammy.version.commit}/lib</url>
<fromFile>sammy.js</fromFile>
<toFile>${destinationDir}/sammy.js</toFile>
</configuration>
</execution>
<execution>
<id>download-min-js</id>
<phase>process-resources</phase>
<goals><goal>download-single</goal></goals>
<configuration>
<url>${downloadUrl}/${sammy.version.commit}/lib/min</url>
<fromFile>sammy-${sammy.version}.min.js</fromFile>
<toFile>${destinationDir}/sammy.min.js</toFile>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.4</version>
</plugin>
</plugins>
<extensions>
<extension>
<!-- this extension is required by wagon in order to pass the proxy -->
<!-- cf. http://jira.codehaus.org/browse/MNG-5237 -->
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-http-lightweight</artifactId>
<version>2.4</version>
</extension>
</extensions>
</build>
</project>