Skip to content

Commit 4f6a758

Browse files
r.wunsch@ist-software.comr.wunsch@ist-software.com
authored andcommitted
[maven-release-plugin] prepare release composum-pages-1.5.0
1 parent 6c00f22 commit 4f6a758

File tree

27 files changed

+2913
-2939
lines changed

27 files changed

+2913
-2939
lines changed

commons/bundle/pom.xml

Lines changed: 295 additions & 296 deletions
Large diffs are not rendered by default.

commons/package/pom.xml

Lines changed: 211 additions & 212 deletions
Large diffs are not rendered by default.

commons/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
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">
43
<modelVersion>4.0.0</modelVersion>
54

65
<parent>
76
<groupId>com.composum.pages</groupId>
87
<artifactId>composum-pages</artifactId>
9-
<version>1.5.0-SNAPSHOT</version>
8+
<version>1.5.0</version>
109
</parent>
1110

1211
<artifactId>composum-pages-commons</artifactId>

commons/setup/pom.xml

Lines changed: 127 additions & 128 deletions
Original file line numberDiff line numberDiff line change
@@ -1,128 +1,127 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4-
<modelVersion>4.0.0</modelVersion>
5-
6-
<parent>
7-
<groupId>com.composum.pages</groupId>
8-
<artifactId>composum-pages-commons</artifactId>
9-
<version>1.5.0-SNAPSHOT</version>
10-
</parent>
11-
12-
<artifactId>composum-pages-commons-setup</artifactId>
13-
<packaging>jar</packaging>
14-
15-
<name>Composum Pages Commons setup hook</name>
16-
<description>the setup implementation code for the Pages modules</description>
17-
18-
<build>
19-
<plugins>
20-
21-
<plugin>
22-
<groupId>pl.project13.maven</groupId>
23-
<artifactId>git-commit-id-plugin</artifactId>
24-
</plugin>
25-
26-
<!-- set main class -->
27-
<plugin>
28-
<groupId>org.apache.maven.plugins</groupId>
29-
<artifactId>maven-jar-plugin</artifactId>
30-
<configuration>
31-
<archive>
32-
<manifest>
33-
<mainClass>com.composum.pages.commons.setup.SetupHook</mainClass>
34-
<addClasspath>true</addClasspath>
35-
</manifest>
36-
</archive>
37-
</configuration>
38-
</plugin>
39-
40-
<!-- embed utilities -->
41-
<plugin>
42-
<groupId>org.apache.maven.plugins</groupId>
43-
<artifactId>maven-dependency-plugin</artifactId>
44-
<executions>
45-
<execution>
46-
<id>embed</id>
47-
<phase>validate</phase>
48-
<goals>
49-
<goal>unpack</goal>
50-
</goals>
51-
<configuration>
52-
<artifactItems>
53-
<artifactItem>
54-
<groupId>com.composum.nodes.setup</groupId>
55-
<artifactId>composum-nodes-setup-util</artifactId>
56-
<outputDirectory>${project.build.directory}/classes</outputDirectory>
57-
</artifactItem>
58-
</artifactItems>
59-
</configuration>
60-
</execution>
61-
</executions>
62-
</plugin>
63-
</plugins>
64-
</build>
65-
66-
<dependencies>
67-
68-
<!-- Composum Nodes (Core) -->
69-
<dependency>
70-
<groupId>com.composum.nodes</groupId>
71-
<artifactId>composum-nodes-commons</artifactId>
72-
</dependency>
73-
<dependency>
74-
<groupId>com.composum.nodes</groupId>
75-
<artifactId>composum-nodes-usermgr</artifactId>
76-
</dependency>
77-
78-
<!-- Composum Platform -->
79-
<dependency>
80-
<groupId>com.composum.platform</groupId>
81-
<artifactId>composum-platform-staging-bundle</artifactId>
82-
</dependency>
83-
84-
<!-- Setup utilities -->
85-
<dependency>
86-
<groupId>com.composum.nodes.setup</groupId>
87-
<artifactId>composum-nodes-setup-util</artifactId>
88-
</dependency>
89-
90-
<!-- Apache Sling -->
91-
<dependency>
92-
<groupId>org.apache.sling</groupId>
93-
<artifactId>org.apache.sling.api</artifactId>
94-
</dependency>
95-
96-
<!-- JCR API, Jackrabbit -->
97-
<dependency>
98-
<groupId>javax.jcr</groupId>
99-
<artifactId>jcr</artifactId>
100-
</dependency>
101-
<dependency>
102-
<groupId>org.apache.jackrabbit</groupId>
103-
<artifactId>jackrabbit-api</artifactId>
104-
</dependency>
105-
<dependency>
106-
<groupId>org.apache.jackrabbit</groupId>
107-
<artifactId>jackrabbit-jcr-commons</artifactId>
108-
</dependency>
109-
<dependency>
110-
<groupId>org.apache.jackrabbit.vault</groupId>
111-
<artifactId>org.apache.jackrabbit.vault</artifactId>
112-
</dependency>
113-
114-
<!-- OSGi -->
115-
<dependency>
116-
<groupId>org.osgi</groupId>
117-
<artifactId>org.osgi.core</artifactId>
118-
</dependency>
119-
120-
<!-- Logging -->
121-
<dependency>
122-
<groupId>org.slf4j</groupId>
123-
<artifactId>slf4j-simple</artifactId>
124-
</dependency>
125-
126-
</dependencies>
127-
</project>
128-
1+
<?xml version="1.0" encoding="UTF-8"?>
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+
<modelVersion>4.0.0</modelVersion>
4+
5+
<parent>
6+
<groupId>com.composum.pages</groupId>
7+
<artifactId>composum-pages-commons</artifactId>
8+
<version>1.5.0</version>
9+
</parent>
10+
11+
<artifactId>composum-pages-commons-setup</artifactId>
12+
<packaging>jar</packaging>
13+
14+
<name>Composum Pages Commons setup hook</name>
15+
<description>the setup implementation code for the Pages modules</description>
16+
17+
<build>
18+
<plugins>
19+
20+
<plugin>
21+
<groupId>pl.project13.maven</groupId>
22+
<artifactId>git-commit-id-plugin</artifactId>
23+
</plugin>
24+
25+
<!-- set main class -->
26+
<plugin>
27+
<groupId>org.apache.maven.plugins</groupId>
28+
<artifactId>maven-jar-plugin</artifactId>
29+
<configuration>
30+
<archive>
31+
<manifest>
32+
<mainClass>com.composum.pages.commons.setup.SetupHook</mainClass>
33+
<addClasspath>true</addClasspath>
34+
</manifest>
35+
</archive>
36+
</configuration>
37+
</plugin>
38+
39+
<!-- embed utilities -->
40+
<plugin>
41+
<groupId>org.apache.maven.plugins</groupId>
42+
<artifactId>maven-dependency-plugin</artifactId>
43+
<executions>
44+
<execution>
45+
<id>embed</id>
46+
<phase>validate</phase>
47+
<goals>
48+
<goal>unpack</goal>
49+
</goals>
50+
<configuration>
51+
<artifactItems>
52+
<artifactItem>
53+
<groupId>com.composum.nodes.setup</groupId>
54+
<artifactId>composum-nodes-setup-util</artifactId>
55+
<outputDirectory>${project.build.directory}/classes</outputDirectory>
56+
</artifactItem>
57+
</artifactItems>
58+
</configuration>
59+
</execution>
60+
</executions>
61+
</plugin>
62+
</plugins>
63+
</build>
64+
65+
<dependencies>
66+
67+
<!-- Composum Nodes (Core) -->
68+
<dependency>
69+
<groupId>com.composum.nodes</groupId>
70+
<artifactId>composum-nodes-commons</artifactId>
71+
</dependency>
72+
<dependency>
73+
<groupId>com.composum.nodes</groupId>
74+
<artifactId>composum-nodes-usermgr</artifactId>
75+
</dependency>
76+
77+
<!-- Composum Platform -->
78+
<dependency>
79+
<groupId>com.composum.platform</groupId>
80+
<artifactId>composum-platform-staging-bundle</artifactId>
81+
</dependency>
82+
83+
<!-- Setup utilities -->
84+
<dependency>
85+
<groupId>com.composum.nodes.setup</groupId>
86+
<artifactId>composum-nodes-setup-util</artifactId>
87+
</dependency>
88+
89+
<!-- Apache Sling -->
90+
<dependency>
91+
<groupId>org.apache.sling</groupId>
92+
<artifactId>org.apache.sling.api</artifactId>
93+
</dependency>
94+
95+
<!-- JCR API, Jackrabbit -->
96+
<dependency>
97+
<groupId>javax.jcr</groupId>
98+
<artifactId>jcr</artifactId>
99+
</dependency>
100+
<dependency>
101+
<groupId>org.apache.jackrabbit</groupId>
102+
<artifactId>jackrabbit-api</artifactId>
103+
</dependency>
104+
<dependency>
105+
<groupId>org.apache.jackrabbit</groupId>
106+
<artifactId>jackrabbit-jcr-commons</artifactId>
107+
</dependency>
108+
<dependency>
109+
<groupId>org.apache.jackrabbit.vault</groupId>
110+
<artifactId>org.apache.jackrabbit.vault</artifactId>
111+
</dependency>
112+
113+
<!-- OSGi -->
114+
<dependency>
115+
<groupId>org.osgi</groupId>
116+
<artifactId>org.osgi.core</artifactId>
117+
</dependency>
118+
119+
<!-- Logging -->
120+
<dependency>
121+
<groupId>org.slf4j</groupId>
122+
<artifactId>slf4j-simple</artifactId>
123+
</dependency>
124+
125+
</dependencies>
126+
</project>
127+

0 commit comments

Comments
 (0)