-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
159 lines (148 loc) · 4.77 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<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.nasdanika.demos.compute-graph</groupId>
<artifactId>parent</artifactId>
<version>2024.12.0</version>
<packaging>pom</packaging>
<name>Compute graph demo</name>
<description>Compute model and node processors to calculate circumference using a parse graph</description>
<licenses>
<license>
<name>Eclipse Public License 2.0</name>
<url>https://www.nasdanika.org/builds/master/eclipse-public-license-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/Nasdanika-Demos/compute-graph</url>
</scm>
<url>https://github.com/Nasdanika-Models/architecture</url>
<properties>
<core.version>2024.12.0</core.version>
<html.version>2024.12.0</html.version>
<models.ecore.version>2024.12.0</models.ecore.version>
<jacoco.version>0.8.12</jacoco.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.javadoc.failOnError>false</maven.javadoc.failOnError>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.2</version>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.11.4</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.21.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.2</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<failOnError>false</failOnError>
<additionalOptions>-Xdoclint:none</additionalOptions>
<linksource>true</linksource>
<additionalOptions><![CDATA[--allow-script-in-comments]]></additionalOptions>
<links>
<link>https://download.eclipse.org/modeling/emf/emf/javadoc/2.11/</link>
<link>https://picocli.info/apidocs/</link>
</links>
<offlineLinks>
<!-- Core -->
<offlineLink>
<url>https://docs.nasdanika.org/modules/core/apidocs/</url>
<location>${project.parent.basedir}/../core/target/apidocs/</location>
</offlineLink>
</offlineLinks>
<header>
<![CDATA[
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9BRJVLK8CC"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-9BRJVLK8CC');
</script>
]]>
</header>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.11.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.11.4</version>
<scope>test</scope>
</dependency>
</dependencies>
<organization>
<name>Nasdanika</name>
<url>https://nasdanika.org</url>
</organization>
<developers>
<developer>
<id>pvlasov</id>
<name>Pavel Vlasov</name>
<email>[email protected]</email>
<roles>
<role>Lead Developer</role>
</roles>
<timezone>-5</timezone>
</developer>
</developers>
<modules>
<module>model</module>
<module>processors</module>
<module>generator</module>
<module>compute</module>
</modules>
</project>