Commit ed172ba11aa9ac7ebe387ac7aa957fb4accc97fe

Authored by Mateusz Kopeć
1 parent 9954db47

update dependencies

Showing 1 changed file with 70 additions and 66 deletions
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">  
3 - <modelVersion>4.0.0</modelVersion> 2 + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3 + <modelVersion>4.0.0</modelVersion>
4 4
5 - <groupId>pl.waw.ipipan.zil.summ</groupId>  
6 - <artifactId>eval</artifactId>  
7 - <version>1.0</version> 5 + <groupId>pl.waw.ipipan.zil.summ</groupId>
  6 + <artifactId>eval</artifactId>
  7 + <version>1.0</version>
8 8
9 - <properties>  
10 - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>  
11 - <java.version.build>1.8</java.version.build>  
12 - </properties> 9 + <properties>
  10 + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  11 + <java.version.build>1.8</java.version.build>
  12 + </properties>
13 13
14 - <developers>  
15 - <developer>  
16 - <name>Mateusz Kopeć</name>  
17 - <organization>ICS PAS</organization>  
18 - <email>m.kopec@ipipan.waw.pl</email>  
19 - </developer>  
20 - </developers> 14 + <developers>
  15 + <developer>
  16 + <name>Mateusz Kopeć</name>
  17 + <organization>ICS PAS</organization>
  18 + <email>m.kopec@ipipan.waw.pl</email>
  19 + </developer>
  20 + </developers>
21 21
22 - <dependencies>  
23 - <dependency>  
24 - <groupId>org.apache.logging.log4j</groupId>  
25 - <artifactId>log4j-core</artifactId>  
26 - <version>2.3</version>  
27 - </dependency>  
28 - <dependency>  
29 - <groupId>junit</groupId>  
30 - <artifactId>junit</artifactId>  
31 - <version>4.12</version>  
32 - </dependency>  
33 - <dependency>  
34 - <groupId>com.google.guava</groupId>  
35 - <artifactId>guava</artifactId>  
36 - <version>18.0</version>  
37 - </dependency>  
38 - <dependency>  
39 - <groupId>org.apache.commons</groupId>  
40 - <artifactId>commons-math3</artifactId>  
41 - <version>3.5</version>  
42 - </dependency>  
43 - <dependency>  
44 - <groupId>org.apache.commons</groupId>  
45 - <artifactId>commons-lang3</artifactId>  
46 - <version>3.4</version>  
47 - </dependency>  
48 - </dependencies> 22 + <prerequisites>
  23 + <maven>3.0.5</maven>
  24 + </prerequisites>
49 25
50 - <build>  
51 - <plugins>  
52 - <plugin>  
53 - <groupId>org.apache.maven.plugins</groupId>  
54 - <artifactId>maven-compiler-plugin</artifactId>  
55 - <version>3.1</version>  
56 - <configuration>  
57 - <source>${java.version.build}</source>  
58 - <target>${java.version.build}</target>  
59 - </configuration>  
60 - </plugin> 26 + <dependencies>
  27 + <dependency>
  28 + <groupId>org.apache.logging.log4j</groupId>
  29 + <artifactId>log4j-core</artifactId>
  30 + <version>2.8.2</version>
  31 + </dependency>
  32 + <dependency>
  33 + <groupId>junit</groupId>
  34 + <artifactId>junit</artifactId>
  35 + <version>4.12</version>
  36 + </dependency>
  37 + <dependency>
  38 + <groupId>com.google.guava</groupId>
  39 + <artifactId>guava</artifactId>
  40 + <version>21.0</version>
  41 + </dependency>
  42 + <dependency>
  43 + <groupId>org.apache.commons</groupId>
  44 + <artifactId>commons-math3</artifactId>
  45 + <version>3.6.1</version>
  46 + </dependency>
  47 + <dependency>
  48 + <groupId>org.apache.commons</groupId>
  49 + <artifactId>commons-lang3</artifactId>
  50 + <version>3.5</version>
  51 + </dependency>
  52 + </dependencies>
  53 +
  54 + <build>
  55 + <plugins>
  56 + <plugin>
  57 + <groupId>org.apache.maven.plugins</groupId>
  58 + <artifactId>maven-compiler-plugin</artifactId>
  59 + <version>3.6.1</version>
  60 + <configuration>
  61 + <source>${java.version.build}</source>
  62 + <target>${java.version.build}</target>
  63 + </configuration>
  64 + </plugin>
61 <plugin> 65 <plugin>
62 <groupId>org.apache.maven.plugins</groupId> 66 <groupId>org.apache.maven.plugins</groupId>
63 <artifactId>maven-assembly-plugin</artifactId> 67 <artifactId>maven-assembly-plugin</artifactId>
@@ -84,18 +88,18 @@ @@ -84,18 +88,18 @@
84 </execution> 88 </execution>
85 </executions> 89 </executions>
86 </plugin> 90 </plugin>
87 - </plugins>  
88 - </build> 91 + </plugins>
  92 + </build>
89 93
90 - <distributionManagement>  
91 - <repository>  
92 - <id>deployment</id>  
93 - <url>http://maven.nlp.ipipan.waw.pl/content/repositories/releases/</url>  
94 - </repository>  
95 - <snapshotRepository>  
96 - <id>deployment</id>  
97 - <url>http://maven.nlp.ipipan.waw.pl/content/repositories/snapshots/</url>  
98 - </snapshotRepository>  
99 - </distributionManagement> 94 + <distributionManagement>
  95 + <repository>
  96 + <id>deployment</id>
  97 + <url>http://maven.nlp.ipipan.waw.pl/content/repositories/releases/</url>
  98 + </repository>
  99 + <snapshotRepository>
  100 + <id>deployment</id>
  101 + <url>http://maven.nlp.ipipan.waw.pl/content/repositories/snapshots/</url>
  102 + </snapshotRepository>
  103 + </distributionManagement>
100 104
101 </project> 105 </project>
102 \ No newline at end of file 106 \ No newline at end of file