[LIB-10] Correct RequestParams for Event Rounds and Seeding
[snooker-score-api.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index 71b33dd..28084f6 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -1,7 +1,7 @@
 <?xml version='1.0' encoding='UTF-8'?>
 
 <!--
-  ~ Copyright (c) 2017. Developed by Hedgecode.
+  ~ Copyright (c) 2017-2020. Developed by Hedgecode.
   ~
   ~ Licensed under the Apache License, Version 2.0 (the "License");
   ~ you may not use this file except in compliance with the License.
 
     <parent>
         <groupId>org.hedgecode.maven</groupId>
-        <artifactId>maven-parent</artifactId>
-        <version>1</version>
+        <artifactId>lib-parent</artifactId>
+        <version>3</version>
+        <relativePath>../lib-parent/pom.xml</relativePath>
     </parent>
 
     <groupId>org.hedgecode.snooker</groupId>
     <artifactId>snooker-score-api</artifactId>
-    <version>0.1-SNAPSHOT</version>
+    <version>1.0-SNAPSHOT</version>
     <packaging>jar</packaging>
 
     <name>Hedgecode Snooker Score API</name>
     </description>
     <inceptionYear>2017</inceptionYear>
 
-    <url>http://lib.hedgecode.org/${project.artifactId}/</url>
+    <url>https://lib.hedgecode.org/${project.artifactId}/</url>
+
+    <contributors>
+        <contributor>
+            <name>Hedgehog</name>
+            <organization>Hedgecode</organization>
+            <organizationUrl>https://hedgecode.org/</organizationUrl>
+            <roles>
+                <role>inspirer</role>
+            </roles>
+            <properties>
+                <picUrl>https://hedgecode.org/img/hedgehog50x50.png</picUrl>
+            </properties>
+        </contributor>
+        <contributor>
+            <name>Bundle</name>
+            <organization>Hedgecode</organization>
+            <organizationUrl>https://hedgecode.org/</organizationUrl>
+            <roles>
+                <role>data storage</role>
+            </roles>
+            <properties>
+                <picUrl>https://hedgecode.org/img/bundle50x50.png</picUrl>
+            </properties>
+        </contributor>
+    </contributors>
 
     <scm>
         <connection>scm:svn:http://svn.hedgecode.org/lib/${project.artifactId}/trunk/</connection>
@@ -50,7 +76,7 @@
 
     <issueManagement>
         <system>JIRA</system>
-        <url>http://issues.hedgecode.org/browse/${issueKey}/component/${issueComponentId}</url>
+        <url>https://issues.hedgecode.org/browse/${issueKey}/component/${issueComponentId}</url>
     </issueManagement>
 
     <distributionManagement>
     </distributionManagement>
 
     <properties>
-        <javaVersion>8</javaVersion>
-        <maven.compiler.source>1.${javaVersion}</maven.compiler.source>
-        <maven.compiler.target>1.${javaVersion}</maven.compiler.target>
         <gsonVersion>2.8.0</gsonVersion>
         <junitVersion>4.8.2</junitVersion>
         <mavenDependencyPluginVersion>2.8</mavenDependencyPluginVersion>
-        <mavenJarPluginVersion>2.5</mavenJarPluginVersion>
         <mavenAssemblyPluginVersion>2.4.1</mavenAssemblyPluginVersion>
-        <mavenReleasePluginVersion>2.5.3</mavenReleasePluginVersion>
-        <mavenPluginToolsVersion>3.4</mavenPluginToolsVersion>
-        <mavenReportsPluginVersion>2.8.1</mavenReportsPluginVersion>
-        <mavenFindBugsPluginVersion>3.0.4</mavenFindBugsPluginVersion>
-        <wagonWebDavVersion>2.7</wagonWebDavVersion>
         <issueComponentId>10012</issueComponentId>
-        <issueKey>LIB</issueKey>
-        <issueNumber>5</issueNumber>
+        <issueNumber>10</issueNumber>
     </properties>
 
     <dependencies>
                     <scmCommentPrefix xml:space="preserve">[${issueKey}-${issueNumber}] </scmCommentPrefix>
                 </configuration>
             </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-site-plugin</artifactId>
-                <version>${mavenPluginToolsVersion}</version>
-                <configuration>
-                    <locales>en,ru</locales>
-                </configuration>
-                <dependencies>
-                    <dependency>
-                        <groupId>org.apache.maven.wagon</groupId>
-                        <artifactId>wagon-webdav-jackrabbit</artifactId>
-                        <version>${wagonWebDavVersion}</version>
-                    </dependency>
-                </dependencies>
-            </plugin>
         </plugins>
     </build>
 
                 <plugins>
                     <plugin>
                         <groupId>org.apache.maven.plugins</groupId>
-                        <artifactId>maven-project-info-reports-plugin</artifactId>
-                        <version>${mavenReportsPluginVersion}</version>
-                    </plugin>
-                    <plugin>
-                        <groupId>org.apache.maven.plugins</groupId>
                         <artifactId>maven-javadoc-plugin</artifactId>
                         <configuration>
-                            <notimestamp>true</notimestamp>
-                            <quiet>true</quiet>
                             <sourceFileExcludes>
-                                <exclude>org//hedgecode/snooker/cache/assign/*.java</exclude>
-                                <exclude>org//hedgecode/snooker/compare/*.java</exclude>
-                                <exclude>org//hedgecode/snooker/gson/*.java</exclude>
-                                <exclude>org//hedgecode/snooker/json/*.java</exclude>
-                                <exclude>org//hedgecode/snooker/request/*.java</exclude>
+                                <exclude>org/hedgecode/snooker/annotation/*.java</exclude>
+                                <exclude>org/hedgecode/snooker/cache/assign/*.java</exclude>
+                                <exclude>org/hedgecode/snooker/compare/*.java</exclude>
+                                <exclude>org/hedgecode/snooker/gson/*.java</exclude>
+                                <exclude>org/hedgecode/snooker/json/*.java</exclude>
+                                <exclude>org/hedgecode/snooker/request/*.java</exclude>
                             </sourceFileExcludes>
                         </configuration>
-                        <reportSets>
-                            <reportSet>
-                                <id>default</id>
-                                <reports>
-                                    <report>javadoc</report>
-                                </reports>
-                            </reportSet>
-                        </reportSets>
-                    </plugin>
-                    <plugin>
-                        <groupId>org.codehaus.mojo</groupId>
-                        <artifactId>findbugs-maven-plugin</artifactId>
-                        <version>${mavenFindBugsPluginVersion}</version>
                     </plugin>
                 </plugins>
             </reporting>