Skip to content

Commit 07d5127

Browse files
committed
U include older releases in maven repo
1 parent b4b55c5 commit 07d5127

17 files changed

+426
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
2+
#Thu May 09 15:12:43 BST 2019
3+
javapackager-0.4.0.pom>=
4+
javapackager-0.4.0.jar>=
Binary file not shown.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
2+
#Tue Mar 26 11:49:22 GMT 2019
3+
https\://repo.maven.apache.org/maven2/.lastUpdated=1553600962262
4+
https\://repo.maven.apache.org/maven2/.error=
Lines changed: 132 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
6+
<groupId>fvarrui.maven</groupId>
7+
<artifactId>javapackager</artifactId>
8+
<version>0.4.0</version>
9+
<packaging>maven-plugin</packaging>
10+
11+
<name>JavaPackager Maven Plugin</name>
12+
13+
<url>https://github.com/fvarrui/javapackager</url>
14+
15+
<properties>
16+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17+
<maven.compiler.source>1.8</maven.compiler.source>
18+
<maven.compiler.target>1.8</maven.compiler.target>
19+
</properties>
20+
21+
<dependencies>
22+
<dependency>
23+
<groupId>org.apache.maven</groupId>
24+
<artifactId>maven-plugin-api</artifactId>
25+
<version>3.6.0</version>
26+
</dependency>
27+
<dependency>
28+
<groupId>org.apache.maven.plugin-tools</groupId>
29+
<artifactId>maven-plugin-annotations</artifactId>
30+
<version>3.6.0</version>
31+
<scope>provided</scope>
32+
</dependency>
33+
<dependency>
34+
<groupId>org.codehaus.plexus</groupId>
35+
<artifactId>plexus-utils</artifactId>
36+
<version>3.1.1</version>
37+
</dependency>
38+
<dependency>
39+
<groupId>junit</groupId>
40+
<artifactId>junit</artifactId>
41+
<version>4.12</version>
42+
<scope>test</scope>
43+
</dependency>
44+
<dependency>
45+
<groupId>org.twdata.maven</groupId>
46+
<artifactId>mojo-executor</artifactId>
47+
<version>2.3.0</version>
48+
</dependency>
49+
<dependency>
50+
<groupId>commons-lang</groupId>
51+
<artifactId>commons-lang</artifactId>
52+
<version>2.2</version>
53+
</dependency>
54+
<dependency>
55+
<groupId>commons-io</groupId>
56+
<artifactId>commons-io</artifactId>
57+
<version>2.6</version>
58+
</dependency>
59+
<dependency>
60+
<groupId>org.apache.velocity</groupId>
61+
<artifactId>velocity-engine-core</artifactId>
62+
<version>2.0</version>
63+
</dependency>
64+
</dependencies>
65+
66+
<build>
67+
<plugins>
68+
<plugin>
69+
<groupId>org.apache.maven.plugins</groupId>
70+
<artifactId>maven-plugin-plugin</artifactId>
71+
<version>3.6.0</version>
72+
<configuration>
73+
<goalPrefix>javapackager</goalPrefix>
74+
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
75+
</configuration>
76+
<executions>
77+
<execution>
78+
<id>mojo-descriptor</id>
79+
<goals>
80+
<goal>descriptor</goal>
81+
</goals>
82+
</execution>
83+
<execution>
84+
<id>help-goal</id>
85+
<goals>
86+
<goal>help</goal>
87+
</goals>
88+
</execution>
89+
</executions>
90+
</plugin>
91+
</plugins>
92+
</build>
93+
<profiles>
94+
<profile>
95+
<id>run-its</id>
96+
<build>
97+
<plugins>
98+
<plugin>
99+
<groupId>org.apache.maven.plugins</groupId>
100+
<artifactId>maven-invoker-plugin</artifactId>
101+
<version>1.7</version>
102+
<configuration>
103+
<debug>true</debug>
104+
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
105+
<pomIncludes>
106+
<pomInclude>*/pom.xml</pomInclude>
107+
</pomIncludes>
108+
<postBuildHookScript>verify</postBuildHookScript>
109+
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
110+
<settingsFile>src/it/settings.xml</settingsFile>
111+
<goals>
112+
<goal>clean</goal>
113+
<goal>test-compile</goal>
114+
</goals>
115+
</configuration>
116+
<executions>
117+
<execution>
118+
<id>integration-test</id>
119+
<goals>
120+
<goal>install</goal>
121+
<goal>integration-test</goal>
122+
<goal>verify</goal>
123+
</goals>
124+
</execution>
125+
</executions>
126+
</plugin>
127+
</plugins>
128+
129+
</build>
130+
</profile>
131+
</profiles>
132+
</project>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#Thu May 09 15:16:02 BST 2019
2+
central|https\://repo.maven.apache.org/maven2|null=1557411362154
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
2+
#Tue May 14 21:58:35 BST 2019
3+
javapackager-0.5.0.pom>=
4+
javapackager-0.5.0.jar>=
Binary file not shown.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
2+
#Thu May 09 16:13:28 BST 2019
3+
https\://repo.maven.apache.org/maven2/.lastUpdated=1557414808445
4+
https\://repo.maven.apache.org/maven2/.error=
Lines changed: 132 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
6+
<groupId>fvarrui.maven</groupId>
7+
<artifactId>javapackager</artifactId>
8+
<version>0.5.0</version>
9+
<packaging>maven-plugin</packaging>
10+
11+
<name>JavaPackager Maven Plugin</name>
12+
13+
<url>https://github.com/fvarrui/javapackager</url>
14+
15+
<properties>
16+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17+
<maven.compiler.source>1.8</maven.compiler.source>
18+
<maven.compiler.target>1.8</maven.compiler.target>
19+
</properties>
20+
21+
<dependencies>
22+
<dependency>
23+
<groupId>org.apache.maven</groupId>
24+
<artifactId>maven-plugin-api</artifactId>
25+
<version>3.6.0</version>
26+
</dependency>
27+
<dependency>
28+
<groupId>org.apache.maven.plugin-tools</groupId>
29+
<artifactId>maven-plugin-annotations</artifactId>
30+
<version>3.6.0</version>
31+
<scope>provided</scope>
32+
</dependency>
33+
<dependency>
34+
<groupId>org.codehaus.plexus</groupId>
35+
<artifactId>plexus-utils</artifactId>
36+
<version>3.1.1</version>
37+
</dependency>
38+
<dependency>
39+
<groupId>junit</groupId>
40+
<artifactId>junit</artifactId>
41+
<version>4.12</version>
42+
<scope>test</scope>
43+
</dependency>
44+
<dependency>
45+
<groupId>org.twdata.maven</groupId>
46+
<artifactId>mojo-executor</artifactId>
47+
<version>2.3.0</version>
48+
</dependency>
49+
<dependency>
50+
<groupId>commons-lang</groupId>
51+
<artifactId>commons-lang</artifactId>
52+
<version>2.2</version>
53+
</dependency>
54+
<dependency>
55+
<groupId>commons-io</groupId>
56+
<artifactId>commons-io</artifactId>
57+
<version>2.6</version>
58+
</dependency>
59+
<dependency>
60+
<groupId>org.apache.velocity</groupId>
61+
<artifactId>velocity-engine-core</artifactId>
62+
<version>2.0</version>
63+
</dependency>
64+
</dependencies>
65+
66+
<build>
67+
<plugins>
68+
<plugin>
69+
<groupId>org.apache.maven.plugins</groupId>
70+
<artifactId>maven-plugin-plugin</artifactId>
71+
<version>3.6.0</version>
72+
<configuration>
73+
<goalPrefix>javapackager</goalPrefix>
74+
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
75+
</configuration>
76+
<executions>
77+
<execution>
78+
<id>mojo-descriptor</id>
79+
<goals>
80+
<goal>descriptor</goal>
81+
</goals>
82+
</execution>
83+
<execution>
84+
<id>help-goal</id>
85+
<goals>
86+
<goal>help</goal>
87+
</goals>
88+
</execution>
89+
</executions>
90+
</plugin>
91+
</plugins>
92+
</build>
93+
<profiles>
94+
<profile>
95+
<id>run-its</id>
96+
<build>
97+
<plugins>
98+
<plugin>
99+
<groupId>org.apache.maven.plugins</groupId>
100+
<artifactId>maven-invoker-plugin</artifactId>
101+
<version>1.7</version>
102+
<configuration>
103+
<debug>true</debug>
104+
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
105+
<pomIncludes>
106+
<pomInclude>*/pom.xml</pomInclude>
107+
</pomIncludes>
108+
<postBuildHookScript>verify</postBuildHookScript>
109+
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
110+
<settingsFile>src/it/settings.xml</settingsFile>
111+
<goals>
112+
<goal>clean</goal>
113+
<goal>test-compile</goal>
114+
</goals>
115+
</configuration>
116+
<executions>
117+
<execution>
118+
<id>integration-test</id>
119+
<goals>
120+
<goal>install</goal>
121+
<goal>integration-test</goal>
122+
<goal>verify</goal>
123+
</goals>
124+
</execution>
125+
</executions>
126+
</plugin>
127+
</plugins>
128+
129+
</build>
130+
</profile>
131+
</profiles>
132+
</project>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#Thu May 23 01:02:37 BST 2019
2+
central|https\://repo.maven.apache.org/maven2|null=1558569757204

0 commit comments

Comments
 (0)