|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 | 2 | <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">
|
3 | 3 | <modelVersion>4.0.0</modelVersion>
|
4 |
| - <groupId>org.angularjs</groupId> |
5 |
| - <artifactId>angular</artifactId> |
6 |
| - <name>AngularJS</name> |
7 |
| - <version>1.0.0rc10</version> |
| 4 | + |
8 | 5 | <packaging>jar</packaging>
|
9 |
| - <distributionManagement> |
10 |
| - <repository> |
11 |
| - <id>webjars.github.com</id> |
12 |
| - <url>file:///${basedir}/../webjars.github.com/m2/</url> |
13 |
| - </repository> |
14 |
| - </distributionManagement> |
| 6 | + <groupId>org.webjars</groupId> |
| 7 | + <artifactId>angularjs</artifactId> |
| 8 | + <version>1.0.2-SNAPSHOT</version> |
| 9 | + <name>AngularJS</name> |
| 10 | + <description>WebJar for AngularJS</description> |
| 11 | + <url>http://webjars.org</url> |
| 12 | + |
15 | 13 | <properties>
|
16 | 14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
17 |
| - <angular.version>1.0.0rc10</angular.version> |
| 15 | + <angular.version>1.0.2</angular.version> |
18 | 16 | <angular.sourceUrl>http://code.angularjs.org/${angular.version}</angular.sourceUrl>
|
19 |
| - <destDir>${project.build.outputDirectory}/public/${project.groupId}/${project.artifactId}</destDir> |
| 17 | + <destDir>${project.build.outputDirectory}/classes/META-INF/resources/webjars/${project.artifactId}/${angular.version}</destDir> |
20 | 18 | </properties>
|
| 19 | + |
| 20 | + <licenses> |
| 21 | + <license> |
| 22 | + <name>MIT License</name> |
| 23 | + <url>https://github.com/angular/angular.js/blob/master/LICENSE</url> |
| 24 | + <distribution>repo</distribution> |
| 25 | + </license> |
| 26 | + </licenses> |
| 27 | + |
| 28 | + <scm> |
| 29 | + <url>http://github.com/webjars/angularjs</url> |
| 30 | + <connection>scm:git:https://github.com/webjars/angularjs.git</connection> |
| 31 | + <developerConnection>scm:git:https://github.com/webjars/angularjs.git</developerConnection> |
| 32 | + <tag>HEAD</tag> |
| 33 | + </scm> |
| 34 | + |
| 35 | + <developers> |
| 36 | + <developer> |
| 37 | + <id>jamesward</id> |
| 38 | + <name>James Ward</name> |
| 39 | + <email>james@jamesward.org</email> |
| 40 | + </developer> |
| 41 | + </developers> |
| 42 | + |
21 | 43 | <build>
|
22 | 44 | <plugins>
|
23 | 45 | <plugin>
|
|
47 | 69 | </execution>
|
48 | 70 | </executions>
|
49 | 71 | </plugin>
|
| 72 | + <plugin> |
| 73 | + <groupId>org.apache.maven.plugins</groupId> |
| 74 | + <artifactId>maven-release-plugin</artifactId> |
| 75 | + <version>2.3.2</version> |
| 76 | + </plugin> |
50 | 77 | </plugins>
|
51 | 78 | </build>
|
| 79 | + |
| 80 | + <profiles> |
| 81 | + <profile> |
| 82 | + <id>release-sign-artifacts</id> |
| 83 | + <activation> |
| 84 | + <activeByDefault>false</activeByDefault> |
| 85 | + <property> |
| 86 | + <name>performRelease</name> |
| 87 | + <value>true</value> |
| 88 | + </property> |
| 89 | + </activation> |
| 90 | + <build> |
| 91 | + <plugins> |
| 92 | + <plugin> |
| 93 | + <artifactId>maven-gpg-plugin</artifactId> |
| 94 | + <version>1.2</version> |
| 95 | + <executions> |
| 96 | + <execution> |
| 97 | + <id>sign-artifacts</id> |
| 98 | + <phase>verify</phase> |
| 99 | + <goals> |
| 100 | + <goal>sign</goal> |
| 101 | + </goals> |
| 102 | + </execution> |
| 103 | + </executions> |
| 104 | + </plugin> |
| 105 | + </plugins> |
| 106 | + </build> |
| 107 | + </profile> |
| 108 | + </profiles> |
| 109 | + |
52 | 110 | </project>
|
0 commit comments