|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 | 2 |
|
3 | 3 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
4 |
| - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 |
| - <modelVersion>4.0.0</modelVersion> |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
6 | 6 |
|
7 |
| - <groupId>com.rootroo</groupId> |
8 |
| - <artifactId>UralicNLP-java</artifactId> |
9 |
| - <version>1.0-SNAPSHOT</version> |
| 7 | + <groupId>com.rootroo</groupId> |
| 8 | + <artifactId>UralicNLP</artifactId> |
| 9 | + <version>1.0</version> |
10 | 10 |
|
11 |
| - <name>UralicNLP-java</name> |
12 |
| - <!-- FIXME change it to the project's website --> |
13 |
| - <url>http://www.example.com</url> |
| 11 | + <name>UralicNLP</name> |
| 12 | + |
| 13 | + <url>https://github.com/mikahama/uralicNLP-java</url> |
| 14 | + <description>>NLP tools (generation, analysis, lemmatization) for multiple languages: Finnish, Russian, German...</description> |
| 15 | + <organization> |
| 16 | + <name>Rootroo Ltd</name> |
| 17 | + <url>https://rootroo.com/</url> |
| 18 | + </organization> |
| 19 | + <properties> |
| 20 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 21 | + <maven.compiler.source>1.7</maven.compiler.source> |
| 22 | + <maven.compiler.target>1.7</maven.compiler.target> |
| 23 | + </properties> |
| 24 | + |
| 25 | + <licenses> |
| 26 | + <license> |
| 27 | + <name>CC BY-NC-ND 4.0</name> |
| 28 | + <url>https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode</url> |
| 29 | + </license> |
| 30 | + </licenses> |
14 | 31 |
|
15 |
| - <properties> |
16 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
17 |
| - <maven.compiler.source>1.7</maven.compiler.source> |
18 |
| - <maven.compiler.target>1.7</maven.compiler.target> |
19 |
| - </properties> |
| 32 | + <developers> |
| 33 | + <developer> |
| 34 | + <name>Mika Hämäläinen</name> |
| 35 | + |
| 36 | + <url>https://mikakalevi.com</url> |
| 37 | + <organization>Rootroo Ltd</organization> |
| 38 | + <organizationUrl>https://rootroo.com/</organizationUrl> |
| 39 | + </developer> |
| 40 | + </developers> |
20 | 41 |
|
21 |
| - <dependencies> |
22 |
| - <dependency> |
23 |
| - <groupId>junit</groupId> |
24 |
| - <artifactId>junit</artifactId> |
25 |
| - <version>4.11</version> |
26 |
| - <scope>test</scope> |
27 |
| - </dependency> |
28 |
| - <dependency> |
29 |
| - <groupId>fi.seco</groupId> |
30 |
| - <artifactId>hfst</artifactId> |
31 |
| - <version>1.1.5</version> |
32 |
| - </dependency> |
33 |
| - <dependency> |
34 |
| - <groupId>me.tongfei</groupId> |
35 |
| - <artifactId>progressbar</artifactId> |
36 |
| - <version>0.5.5</version> |
37 |
| - </dependency> |
38 |
| - </dependencies> |
| 42 | + <dependencies> |
| 43 | + <dependency> |
| 44 | + <groupId>junit</groupId> |
| 45 | + <artifactId>junit</artifactId> |
| 46 | + <version>4.11</version> |
| 47 | + <scope>test</scope> |
| 48 | + </dependency> |
| 49 | + <dependency> |
| 50 | + <groupId>fi.seco</groupId> |
| 51 | + <artifactId>hfst</artifactId> |
| 52 | + <version>1.1.5</version> |
| 53 | + </dependency> |
| 54 | + <dependency> |
| 55 | + <groupId>me.tongfei</groupId> |
| 56 | + <artifactId>progressbar</artifactId> |
| 57 | + <version>0.5.5</version> |
| 58 | + </dependency> |
| 59 | + </dependencies> |
39 | 60 |
|
40 |
| - <build> |
41 |
| - <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --> |
42 |
| - <plugins> |
43 |
| - <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle --> |
44 |
| - <plugin> |
45 |
| - <artifactId>maven-clean-plugin</artifactId> |
46 |
| - <version>3.1.0</version> |
47 |
| - </plugin> |
48 |
| - <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging --> |
49 |
| - <plugin> |
50 |
| - <artifactId>maven-resources-plugin</artifactId> |
51 |
| - <version>3.0.2</version> |
52 |
| - </plugin> |
53 |
| - <plugin> |
54 |
| - <artifactId>maven-compiler-plugin</artifactId> |
55 |
| - <version>3.8.0</version> |
56 |
| - </plugin> |
57 |
| - <plugin> |
58 |
| - <artifactId>maven-surefire-plugin</artifactId> |
59 |
| - <version>2.22.1</version> |
60 |
| - </plugin> |
61 |
| - <plugin> |
62 |
| - <artifactId>maven-jar-plugin</artifactId> |
63 |
| - <version>3.0.2</version> |
64 |
| - </plugin> |
65 |
| - <plugin> |
66 |
| - <artifactId>maven-install-plugin</artifactId> |
67 |
| - <version>2.5.2</version> |
68 |
| - </plugin> |
69 |
| - <plugin> |
70 |
| - <artifactId>maven-deploy-plugin</artifactId> |
71 |
| - <version>2.8.2</version> |
72 |
| - </plugin> |
73 |
| - <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle --> |
74 |
| - <plugin> |
75 |
| - <artifactId>maven-site-plugin</artifactId> |
76 |
| - <version>3.7.1</version> |
77 |
| - </plugin> |
78 |
| - <plugin> |
79 |
| - <artifactId>maven-project-info-reports-plugin</artifactId> |
80 |
| - <version>3.0.0</version> |
81 |
| - </plugin> |
82 |
| - </plugins> |
83 |
| - </pluginManagement> |
84 |
| - </build> |
| 61 | + <build> |
| 62 | + <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --> |
| 63 | + <plugins> |
| 64 | + <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle --> |
| 65 | + <plugin> |
| 66 | + <artifactId>maven-clean-plugin</artifactId> |
| 67 | + <version>3.1.0</version> |
| 68 | + </plugin> |
| 69 | + <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging --> |
| 70 | + <plugin> |
| 71 | + <artifactId>maven-resources-plugin</artifactId> |
| 72 | + <version>3.0.2</version> |
| 73 | + </plugin> |
| 74 | + <plugin> |
| 75 | + <artifactId>maven-compiler-plugin</artifactId> |
| 76 | + <version>3.8.0</version> |
| 77 | + </plugin> |
| 78 | + <plugin> |
| 79 | + <artifactId>maven-surefire-plugin</artifactId> |
| 80 | + <version>2.22.1</version> |
| 81 | + </plugin> |
| 82 | + <plugin> |
| 83 | + <artifactId>maven-jar-plugin</artifactId> |
| 84 | + <version>3.0.2</version> |
| 85 | + </plugin> |
| 86 | + <plugin> |
| 87 | + <artifactId>maven-install-plugin</artifactId> |
| 88 | + <version>2.5.2</version> |
| 89 | + </plugin> |
| 90 | + <plugin> |
| 91 | + <artifactId>maven-deploy-plugin</artifactId> |
| 92 | + <version>2.8.2</version> |
| 93 | + </plugin> |
| 94 | + <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle --> |
| 95 | + <plugin> |
| 96 | + <artifactId>maven-site-plugin</artifactId> |
| 97 | + <version>3.7.1</version> |
| 98 | + </plugin> |
| 99 | + <plugin> |
| 100 | + <artifactId>maven-project-info-reports-plugin</artifactId> |
| 101 | + <version>3.0.0</version> |
| 102 | + </plugin> |
| 103 | + </plugins> |
| 104 | + </pluginManagement> |
| 105 | + </build> |
85 | 106 | </project>
|
0 commit comments