pom.xml 2.93 KB
Newer Older
seamcat1's avatar
seamcat1 committed
1
2
3
4
5
6
<?xml version="1.0" encoding="UTF-8"?>
<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">
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.eco.seamcat</groupId>
    <artifactId>seamcat</artifactId>
    <packaging>pom</packaging>
7
    <version>${revision}</version>
Mads Enevoldsen's avatar
Mads Enevoldsen committed
8
    <url>https://cept.org/eco/eco-tools-and-services/seamcat-spectrum-engineering-advanced-monte-carlo-analysis-tool</url>
seamcat1's avatar
seamcat1 committed
9
    <modules>
10
11
12
13
14
15
16
      <module>model</module>
      <module>persistence</module>
      <module>core</module>
      <module>app</module>
      <module>commandline</module>
      <module>dttb</module>
      <module>ITU_R_P_1411_10_modified</module>
seamcat1's avatar
seamcat1 committed
17
18
    </modules>
    <properties>
Stephan Korsholm's avatar
Stephan Korsholm committed
19
      <revision>5.5.1-ALPHA-3</revision>
20
21
22
23
      <seamcat.version>${revision}</seamcat.version>
      <log4j.version>2.17.1</log4j.version>
      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
      <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
seamcat1's avatar
seamcat1 committed
24
    </properties>
25
26
27
28
29
30
31
32
33
    <developers>
      <developer>
	<id>mads</id>
	<name>Mads Enevoldsen</name>
	<email>mads.enevoldsen at jayway.com</email>
	<organization>Jayway</organization>
	<organizationUrl>http://www.jayway.com</organizationUrl>
	<timezone>+1</timezone>
      </developer>
34
35
36
37
38
39
40
41
        <developer>
            <id>skr</id>
            <name>Stephan Korsholm</name>
            <email>stephan.korsholm at gmail.com</email>
            <organization>Icecap</organization>
            <organizationUrl></organizationUrl>
            <timezone>+1</timezone>
        </developer>
42
    </developers>
43
    <build>
44
45
46
47
48
49
50
51
52
53
54
55
56
      <plugins>
        <plugin>
	  <groupId>org.apache.maven.plugins</groupId>
	  <artifactId>maven-compiler-plugin</artifactId>
	  <version>3.5.1</version>
	  <configuration>
	    <source>1.8</source>
	    <target>1.8</target>
	    <showWarnings>true</showWarnings>
	  </configuration>
	</plugin>
      </plugins>
    </build>
seamcat1's avatar
seamcat1 committed
57
    <dependencyManagement>
58
59
      <dependencies>
        <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
60
        <!-- Logging dependencies         -->
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
        <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
        <dependency>
          <groupId>org.apache.logging.log4j</groupId>
          <artifactId>log4j-core</artifactId>
          <version>${log4j.version}</version>
        </dependency>
        <dependency>
          <groupId>org.apache.logging.log4j</groupId>
          <artifactId>log4j-api</artifactId>
          <version>${log4j.version}</version>
        </dependency>
	
        <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
        <!-- Test dependencies            -->
        <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
        <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <version>4.12</version>
          <scope>test</scope>
        </dependency>
      </dependencies>
seamcat1's avatar
seamcat1 committed
83
84
    </dependencyManagement>
</project>