|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<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"> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 4 | <modelVersion>4.0.0</modelVersion> |
4 | 5 |
|
5 | 6 | <groupId>org.woehlke.computer.kurzweil</groupId> |
|
8 | 9 | <packaging>jar</packaging> |
9 | 10 |
|
10 | 11 | <name>Cyclic Cellular Automaton (Demon)</name> |
11 | | - <description>The cyclic cellular automaton is a cellular automaton rule developed by David Griffeath and studied by several other cellular automaton researchers. |
12 | | - In this system, each cell remains unchanged until some neighboring cell has a modular value exactly one unit larger than that of the cell itself, at which point it copies its neighbor's value. |
13 | | - One-dimensional cyclic cellular automata can be interpreted as systems of interacting particles, while cyclic cellular automata in higher dimensions exhibit complex spiraling behavior. |
| 12 | + <description>The cyclic cellular automaton is a cellular automaton rule developed by David Griffeath and studied by |
| 13 | + several other cellular automaton researchers. |
| 14 | + In this system, each cell remains unchanged until some neighboring cell has a modular value exactly one unit |
| 15 | + larger than that of the cell itself, at which point it copies its neighbor's value. |
| 16 | + One-dimensional cyclic cellular automata can be interpreted as systems of interacting particles, while cyclic |
| 17 | + cellular automata in higher dimensions exhibit complex spiraling behavior. |
14 | 18 | </description> |
15 | | - <url>https://woehlke.org/p/cyclic-cellular-automaton</url> |
| 19 | + <url>https://java.woehlke.org/cyclic-cellular-automaton</url> |
16 | 20 | <inceptionYear>2013</inceptionYear> |
17 | 21 |
|
18 | 22 | <scm> |
19 | 23 | <url>https://github.com/Computer-Kurzweil/cyclic-cellular-automaton.git</url> |
20 | 24 | < connection>scm:git: [email protected]:Computer-Kurzweil/cyclic-cellular-automaton.git</ connection> |
21 | | - < developerConnection>scm:git: [email protected]:Computer-Kurzweil/cyclic-cellular-automaton.git</ developerConnection> |
22 | | - <tag>HEAD</tag> |
23 | | - </scm> |
| 25 | + < developerConnection>scm:git: [email protected]:Computer-Kurzweil/cyclic-cellular-automaton.git |
| 26 | + </developerConnection> |
| 27 | + <tag>HEAD</tag> |
| 28 | + </scm> |
24 | 29 |
|
25 | 30 | <issueManagement> |
26 | 31 | <url>https://github.com/Computer-Kurzweil/cyclic-cellular-automaton/issues/</url> |
|
35 | 40 | <snapshotRepository> |
36 | 41 | <id>snapshots</id> |
37 | 42 | <name>tw-thinkpad-snapshots</name> |
38 | | - <url>file://${user.home}/public_html/java/libs-release-local/</url> |
| 43 | + <url>file://${user.home}/public_html/java/libs-snapshots-local/</url> |
39 | 44 | </snapshotRepository> |
40 | 45 | <repository> |
41 | 46 | <id>central</id> |
|
264 | 269 | <version.lombok>1.18.24</version.lombok> |
265 | 270 | <version.lombok-maven-plugin>1.18.20.0</version.lombok-maven-plugin> |
266 | 271 |
|
267 | | - <applicationMainClass>org.woehlke.computer.kurzweil.cyclic.cellular.automaton.CyclicCellularAutomatonApplication</applicationMainClass> |
| 272 | + <applicationMainClass> |
| 273 | + org.woehlke.computer.kurzweil.cyclic.cellular.automaton.CyclicCellularAutomatonApplication |
| 274 | + </applicationMainClass> |
268 | 275 |
|
269 | 276 | </properties> |
270 | 277 |
|
|
808 | 815 |
|
809 | 816 | <build> |
810 | 817 | <finalName>${project.artifactId}</finalName> |
811 | | - <defaultGoal>clean dependency:resolve dependency:resolve-plugins dependency:sources install site site:deploy exec:java</defaultGoal> |
| 818 | + <defaultGoal>clean dependency:resolve dependency:resolve-plugins dependency:sources install site site:deploy |
| 819 | + exec:java |
| 820 | + </defaultGoal> |
812 | 821 | <pluginManagement> |
813 | 822 | <plugins> |
814 | 823 | <plugin> |
|
1024 | 1033 | <groupId>org.codehaus.mojo</groupId> |
1025 | 1034 | <artifactId>exec-maven-plugin</artifactId> |
1026 | 1035 | <configuration> |
1027 | | - <mainClass>org.woehlke.computer.kurzweil.cyclic.cellular.automaton.CyclicCellularAutomatonApplication</mainClass> |
| 1036 | + <mainClass> |
| 1037 | + org.woehlke.computer.kurzweil.cyclic.cellular.automaton.CyclicCellularAutomatonApplication |
| 1038 | + </mainClass> |
1028 | 1039 | </configuration> |
1029 | 1040 | </plugin> |
1030 | 1041 | <plugin> |
|
1175 | 1186 | </properties> |
1176 | 1187 | <build> |
1177 | 1188 | <finalName>${project.artifactId}</finalName> |
1178 | | - <defaultGoal>clean dependency:resolve dependency:resolve-plugins dependency:sources install site site:deploy exec:java</defaultGoal> |
| 1189 | + <defaultGoal>clean dependency:resolve dependency:resolve-plugins dependency:sources install site |
| 1190 | + site:deploy exec:java |
| 1191 | + </defaultGoal> |
1179 | 1192 | </build> |
1180 | 1193 | </profile> |
1181 | 1194 |
|
|
1189 | 1202 | </properties> |
1190 | 1203 | <build> |
1191 | 1204 | <finalName>${project.artifactId}</finalName> |
1192 | | - <defaultGoal>clean dependency:resolve dependency:resolve-plugins dependency:sources install site site:deploy</defaultGoal> |
| 1205 | + <defaultGoal>clean dependency:resolve dependency:resolve-plugins dependency:sources install site |
| 1206 | + site:deploy |
| 1207 | + </defaultGoal> |
1193 | 1208 | </build> |
1194 | 1209 | </profile> |
1195 | 1210 |
|
|
0 commit comments