Skip to content

Commit ebe395b

Browse files
committed
new structure
1 parent 20f8843 commit ebe395b

File tree

3 files changed

+74
-17
lines changed

3 files changed

+74
-17
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
/target
2+
/.idea
3+
/*.iml

README

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
AngularJS JAR
1+
WebJar for AngularJS
22

3-
Current Version:
4-
1.0.0rc10
5-
6-
Previous Versions:
3+
More info: http://webjars.org

pom.xml

+70-12
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,45 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<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">
33
<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+
85
<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+
1513
<properties>
1614
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17-
<angular.version>1.0.0rc10</angular.version>
15+
<angular.version>1.0.2</angular.version>
1816
<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>
2018
</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+
2143
<build>
2244
<plugins>
2345
<plugin>
@@ -47,6 +69,42 @@
4769
</execution>
4870
</executions>
4971
</plugin>
72+
<plugin>
73+
<groupId>org.apache.maven.plugins</groupId>
74+
<artifactId>maven-release-plugin</artifactId>
75+
<version>2.3.2</version>
76+
</plugin>
5077
</plugins>
5178
</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+
52110
</project>

0 commit comments

Comments
 (0)