Update CLI Helper library version in documentation
[cli-helper.git] / pom.xml
1 <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/xsd/maven-4.0.0.xsd">
2     <modelVersion>4.0.0</modelVersion>
3     <groupId>eu.svjatoslav</groupId>
4     <artifactId>cli-helper</artifactId>
5     <version>1.2-SNAPSHOT</version>
6     <packaging>jar</packaging>
7     <name>CLI helper</name>
8     <description>Helper library for implementing commandline interface</description>
9     <url>http://www2.svjatoslav.eu/gitbrowse/cli-helper/doc/index.html</url>
10
11     <organization>
12         <name>svjatoslav.eu</name>
13         <url>http://svjatoslav.eu</url>
14     </organization>
15
16     <properties>
17         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
19     </properties>
20
21     <build>
22         <plugins>
23             <plugin>
24                 <groupId>org.apache.maven.plugins</groupId>
25                 <artifactId>maven-compiler-plugin</artifactId>
26                 <version>3.8.1</version>
27                 <configuration>
28                     <source>8</source>
29                     <target>8</target>
30                     <encoding>UTF-8</encoding>
31                 </configuration>
32             </plugin>
33
34             <plugin>
35                 <groupId>org.apache.maven.plugins</groupId>
36                 <artifactId>maven-source-plugin</artifactId>
37                 <version>2.2.1</version>
38                 <executions>
39                     <execution>
40                         <id>attach-sources</id>
41                         <goals>
42                             <goal>jar</goal>
43                         </goals>
44                     </execution>
45                 </executions>
46             </plugin>
47
48             <plugin>
49                 <groupId>org.apache.maven.plugins</groupId>
50                 <artifactId>maven-javadoc-plugin</artifactId>
51                 <version>3.5.0</version>
52                 <executions>
53                     <execution>
54                         <id>attach-javadocs</id>
55                         <goals>
56                             <goal>jar</goal>
57                         </goals>
58                     </execution>
59                 </executions>
60 <!--                <configuration>-->
61 <!--                    &lt;!&ndash; workaround for https://bugs.openjdk.java.net/browse/JDK-8212233 &ndash;&gt;-->
62 <!--                    <javaApiLinks>-->
63 <!--                        <property>-->
64 <!--                            <name>foo</name>-->
65 <!--                            <value>bar</value>-->
66 <!--                        </property>-->
67 <!--                    </javaApiLinks>-->
68 <!--                    &lt;!&ndash; Workaround for https://stackoverflow.com/questions/49472783/maven-is-unable-to-find-javadoc-command &ndash;&gt;-->
69 <!--                    <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>-->
70 <!--                </configuration>-->
71             </plugin>
72
73             <plugin>
74                 <groupId>org.apache.maven.plugins</groupId>
75                 <artifactId>maven-release-plugin</artifactId>
76                 <version>2.5.2</version>
77                 <dependencies>
78                     <dependency>
79                         <groupId>org.apache.maven.scm</groupId>
80                         <artifactId>maven-scm-provider-gitexe</artifactId>
81                         <version>1.9.4</version>
82                     </dependency>
83                 </dependencies>
84             </plugin>
85
86         </plugins>
87
88         <extensions>
89             <extension>
90                 <groupId>org.apache.maven.wagon</groupId>
91                 <artifactId>wagon-ssh-external</artifactId>
92                 <version>2.6</version>
93             </extension>
94         </extensions>
95     </build>
96
97     <dependencies>
98         <dependency>
99             <groupId>junit</groupId>
100             <artifactId>junit</artifactId>
101             <version>4.13.2</version>
102             <scope>test</scope>
103         </dependency>
104     </dependencies>
105
106     <distributionManagement>
107         <snapshotRepository>
108             <id>svjatoslav.eu</id>
109             <name>svjatoslav.eu</name>
110             <url>scpexe://svjatoslav.eu:10006/srv/maven</url>
111         </snapshotRepository>
112         <repository>
113             <id>svjatoslav.eu</id>
114             <name>svjatoslav.eu</name>
115             <url>scpexe://svjatoslav.eu:10006/srv/maven</url>
116         </repository>
117     </distributionManagement>
118
119     <scm>
120         <connection>scm:git:ssh://n0@svjatoslav.eu:10006/home/n0/git/cli-helper.git</connection>
121         <developerConnection>scm:git:ssh://n0@svjatoslav.eu:10006/home/n0/git/cli-helper.git</developerConnection>
122         <tag>HEAD</tag>
123     </scm>
124
125 </project>