-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpom.xml
More file actions
141 lines (141 loc) · 4.42 KB
/
Copy pathpom.xml
File metadata and controls
141 lines (141 loc) · 4.42 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<?xml version="1.0" encoding="UTF-8"?>
<!--
* SPDX-FileCopyrightText: Copyright (c) 2012-2026 Yegor Bugayenko
* SPDX-License-Identifier: MIT
-->
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.jcabi</groupId>
<artifactId>parent</artifactId>
<version>0.73.1</version>
</parent>
<groupId>com.jcabi</groupId>
<artifactId>jcabi</artifactId>
<version>2.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>jcabi</name>
<description><![CDATA[
Jcabi is a set of useful open source Java components.
More details you can find at www.jcabi.com.
]]></description>
<url>https://www.jcabi.com</url>
<inceptionYear>2012</inceptionYear>
<organization>
<name>jcabi.com</name>
<url>https://www.jcabi.com</url>
</organization>
<licenses>
<license>
<name>MIT</name>
<url>https://www.jcabi.com/LICENSE.txt</url>
<distribution>repo</distribution>
<comments><![CDATA[
This is free open source project, feel free to redistribute it,
modify, and use in open source OR/AND commercial projects.
Full text of the license is available at http://www.jcabi.com/LICENSE.txt
]]></comments>
</license>
</licenses>
<developers>
<developer>
<id>1</id>
<name>Yegor Bugayenko</name>
<email>yegor256@gmail.com</email>
<organization>Zerocracy</organization>
<organizationUrl>https://www.zerocracy.com</organizationUrl>
<roles>
<role>Architect</role>
<role>Developer</role>
</roles>
<timezone>+3</timezone>
</developer>
</developers>
<issueManagement>
<system>github</system>
<url>https://github.com/jcabi/jcabi/issues</url>
</issueManagement>
<ciManagement>
<system>rultor</system>
<url>https://www.rultor.com/s/jcabi</url>
</ciManagement>
<scm>
<connection>scm:git:github.com:jcabi/jcabi.git</connection>
<developerConnection>scm:git:github.com:jcabi/jcabi.git</developerConnection>
<url>https://github.com/jcabi/jcabi</url>
</scm>
<distributionManagement>
<site>
<id>www.jcabi.com</id>
<url>https://www.jcabi.com/</url>
</site>
</distributionManagement>
<build>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration combine.children="append">
<archive>
<manifestEntries>
<JCabi-Version>${project.version}</JCabi-Version>
<JCabi-Build>${buildNumber}</JCabi-Build>
<JCabi-Date>${maven.build.timestamp}</JCabi-Date>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<JCabi-Version>${project.version}</JCabi-Version>
<JCabi-Build>${buildNumber}</JCabi-Build>
<JCabi-Date>${maven.build.timestamp}</JCabi-Date>
</manifestEntries>
</archive>
</configuration>
<executions>
<execution>
<id>assemble-all</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>6.0.2</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>qulice</id>
<build>
<plugins>
<plugin>
<groupId>com.qulice</groupId>
<artifactId>qulice-maven-plugin</artifactId>
<version>0.26.0</version>
<configuration>
<excludes combine.children="append">
<exclude>checkstyle:/src/site/resources/.*</exclude>
<exclude>checkstyle:/src/site/site.xml</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>