|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 | 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"> |
4 |
| - <groupId>de.java-matrix</groupId> |
5 |
| - <artifactId>jama</artifactId> |
6 |
| - <version>3.0.0-SNAPSHOT</version> |
7 |
| - <modelVersion>4.0.0</modelVersion> |
8 |
| - <name>Java Matrix Package</name> |
9 |
| - <url>https://github.com/tweimer/java-matrix</url> |
10 |
| - <description>A Java Matrix Package</description> |
11 |
| - <packaging>jar</packaging> |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <groupId>de.java-matrix</groupId> |
| 5 | + <artifactId>jama</artifactId> |
| 6 | + <version>3.0.0-SNAPSHOT</version> |
| 7 | + <modelVersion>4.0.0</modelVersion> |
| 8 | + <name>Java Matrix Package</name> |
| 9 | + <url>https://github.com/tweimer/java-matrix</url> |
| 10 | + <description>A Java Matrix Package</description> |
| 11 | + <packaging>jar</packaging> |
12 | 12 |
|
13 |
| - <properties> |
14 |
| - <maven.compiler.source>11</maven.compiler.source> |
15 |
| - <maven.compiler.target>11</maven.compiler.target> |
16 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
17 |
| - </properties> |
| 13 | + <dependencies> |
| 14 | + <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api --> |
| 15 | + <dependency> |
| 16 | + <groupId>org.junit.jupiter</groupId> |
| 17 | + <artifactId>junit-jupiter-api</artifactId> |
| 18 | + <version>5.6.0-M1</version> |
| 19 | + <scope>test</scope> |
| 20 | + </dependency> |
| 21 | + </dependencies> |
18 | 22 |
|
19 |
| - <licenses> |
20 |
| - <license> |
21 |
| - <name>Unlicense</name> |
22 |
| - <url>http://unlicense.org/UNLICENSE</url> |
23 |
| - <distribution>repo</distribution> |
24 |
| - </license> |
25 |
| - </licenses> |
| 23 | + <properties> |
| 24 | + <maven.compiler.source>11</maven.compiler.source> |
| 25 | + <maven.compiler.target>11</maven.compiler.target> |
| 26 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 27 | + </properties> |
26 | 28 |
|
27 |
| - <build> |
28 |
| - <plugins> |
| 29 | + <licenses> |
| 30 | + <license> |
| 31 | + <name>Unlicense</name> |
| 32 | + <url>http://unlicense.org/UNLICENSE</url> |
| 33 | + <distribution>repo</distribution> |
| 34 | + </license> |
| 35 | + </licenses> |
29 | 36 |
|
30 |
| - <plugin> |
31 |
| - <groupId>org.apache.maven.plugins</groupId> |
32 |
| - <artifactId>maven-project-info-reports-plugin</artifactId> |
33 |
| - <version>2.7</version> |
34 |
| - </plugin> |
35 |
| - </plugins> |
36 |
| - </build> |
| 37 | + <build> |
| 38 | + <plugins> |
| 39 | + <plugin> |
| 40 | + <groupId>org.apache.maven.plugins</groupId> |
| 41 | + <artifactId>maven-project-info-reports-plugin</artifactId> |
| 42 | + <version>2.7</version> |
| 43 | + </plugin> |
| 44 | + </plugins> |
| 45 | + </build> |
37 | 46 |
|
38 |
| - <scm> |
39 |
| - <url>https://github.com/tweimer/java-matrix</url> |
40 |
| - <connection>scm:git:git://github.com/tweimer/java-matrix.git</connection> |
41 |
| - <developerConnection>scm:git:git@github.com:tweimer/java-matrix.git</developerConnection> |
42 |
| - </scm> |
| 47 | + <scm> |
| 48 | + <url>https://github.com/tweimer/java-matrix</url> |
| 49 | + <connection>scm:git:git://github.com/tweimer/java-matrix.git</connection> |
| 50 | + <developerConnection>scm:git:git@github.com:tweimer/java-matrix.git</developerConnection> |
| 51 | + </scm> |
43 | 52 |
|
44 |
| - <issueManagement> |
45 |
| - <system>Github</system> |
46 |
| - <url>https://github.com/tweimer/java-matrix/issues</url> |
47 |
| - </issueManagement> |
| 53 | + <issueManagement> |
| 54 | + <system>Github</system> |
| 55 | + <url>https://github.com/tweimer/java-matrix/issues</url> |
| 56 | + </issueManagement> |
48 | 57 |
|
49 | 58 |
|
50 |
| - <mailingLists> |
51 |
| - <mailingList> |
52 |
| - <name>Jama User List</name> |
53 |
| - <subscribe>listproc@nist.gov</subscribe> |
54 |
| - <unsubscribe>listproc@nist.gov</unsubscribe> |
55 |
| - <post>jama@nist.gov</post> |
56 |
| - <archive>http://cio.nist.gov/esd/emaildir/lists/jama/maillist.html</archive> |
57 |
| - </mailingList> |
58 |
| - </mailingLists> |
| 59 | + <mailingLists> |
| 60 | + <mailingList> |
| 61 | + <name>Jama User List</name> |
| 62 | + <subscribe>listproc@nist.gov</subscribe> |
| 63 | + <unsubscribe>listproc@nist.gov</unsubscribe> |
| 64 | + <post>jama@nist.gov</post> |
| 65 | + <archive>http://cio.nist.gov/esd/emaildir/lists/jama/maillist.html</archive> |
| 66 | + </mailingList> |
| 67 | + </mailingLists> |
59 | 68 |
|
60 |
| - <developers> |
61 |
| - <developer> |
62 |
| - <id>jHicklin</id> |
63 |
| - <name>Joe Hicklin</name> |
64 |
| - <email /> |
65 |
| - <organization>The MathWorks</organization> |
66 |
| - <organizationUrl>https://www.mathworks.com/</organizationUrl> |
67 |
| - </developer> |
68 |
| - <developer> |
69 |
| - <id>cmoler</id> |
70 |
| - <name>Cleve Moler</name> |
71 |
| - <email /> |
72 |
| - <organization>The MathWorks</organization> |
73 |
| - <organizationUrl>https://www.mathworks.com/</organizationUrl> |
74 |
| - </developer> |
75 |
| - <developer> |
76 |
| - <id>pwebb</id> |
77 |
| - <name>Peter Webb</name> |
78 |
| - <email /> |
79 |
| - <organization>The MathWorks</organization> |
80 |
| - <organizationUrl>https://www.mathworks.com/</organizationUrl> |
81 |
| - </developer> |
82 |
| - <developer> |
83 |
| - <id>rboisvert</id> |
84 |
| - <name>Ronald F. Boisvert </name> |
85 |
| - <email>boisvert@nist.gov</email> |
86 |
| - <organization>NIST</organization> |
87 |
| - <organizationUrl>https://www.nist.gov</organizationUrl> |
88 |
| - </developer> |
89 |
| - <developer> |
90 |
| - <id>bmiller</id> |
91 |
| - <name>Bruce Miller </name> |
92 |
| - <email>bruce.miller@nist.gov</email> |
93 |
| - <organization>NIST</organization> |
94 |
| - <organizationUrl>https://www.nist.gov</organizationUrl> |
95 |
| - </developer> |
96 |
| - <developer> |
97 |
| - <id>rpozo</id> |
98 |
| - <name>Roldan Pozo</name> |
99 |
| - <email>pozo@nist.gov</email> |
100 |
| - <organization>NIST</organization> |
101 |
| - <organizationUrl>https://www.nist.gov</organizationUrl> |
102 |
| - </developer> |
103 |
| - <developer> |
104 |
| - <id>kremington</id> |
105 |
| - <name>Dr. Karin A. Remington</name> |
106 |
| - <email>kremington@nist.gov</email> |
107 |
| - <organization>NIST</organization> |
108 |
| - <organizationUrl>https://www.nist.gov</organizationUrl> |
109 |
| - </developer> |
110 |
| - <developer> |
111 |
| - <id>tweimer</id> |
112 |
| - <name>Tobias Weimer</name> |
113 |
| - <email>wishmaster51@gmail.com</email> |
114 |
| - </developer> |
115 |
| - </developers> |
| 69 | + <developers> |
| 70 | + <developer> |
| 71 | + <id>jHicklin</id> |
| 72 | + <name>Joe Hicklin</name> |
| 73 | + <email /> |
| 74 | + <organization>The MathWorks</organization> |
| 75 | + <organizationUrl>https://www.mathworks.com/</organizationUrl> |
| 76 | + </developer> |
| 77 | + <developer> |
| 78 | + <id>cmoler</id> |
| 79 | + <name>Cleve Moler</name> |
| 80 | + <email /> |
| 81 | + <organization>The MathWorks</organization> |
| 82 | + <organizationUrl>https://www.mathworks.com/</organizationUrl> |
| 83 | + </developer> |
| 84 | + <developer> |
| 85 | + <id>pwebb</id> |
| 86 | + <name>Peter Webb</name> |
| 87 | + <email /> |
| 88 | + <organization>The MathWorks</organization> |
| 89 | + <organizationUrl>https://www.mathworks.com/</organizationUrl> |
| 90 | + </developer> |
| 91 | + <developer> |
| 92 | + <id>rboisvert</id> |
| 93 | + <name>Ronald F. Boisvert </name> |
| 94 | + <email>boisvert@nist.gov</email> |
| 95 | + <organization>NIST</organization> |
| 96 | + <organizationUrl>https://www.nist.gov</organizationUrl> |
| 97 | + </developer> |
| 98 | + <developer> |
| 99 | + <id>bmiller</id> |
| 100 | + <name>Bruce Miller </name> |
| 101 | + <email>bruce.miller@nist.gov</email> |
| 102 | + <organization>NIST</organization> |
| 103 | + <organizationUrl>https://www.nist.gov</organizationUrl> |
| 104 | + </developer> |
| 105 | + <developer> |
| 106 | + <id>rpozo</id> |
| 107 | + <name>Roldan Pozo</name> |
| 108 | + <email>pozo@nist.gov</email> |
| 109 | + <organization>NIST</organization> |
| 110 | + <organizationUrl>https://www.nist.gov</organizationUrl> |
| 111 | + </developer> |
| 112 | + <developer> |
| 113 | + <id>kremington</id> |
| 114 | + <name>Dr. Karin A. Remington</name> |
| 115 | + <email>kremington@nist.gov</email> |
| 116 | + <organization>NIST</organization> |
| 117 | + <organizationUrl>https://www.nist.gov</organizationUrl> |
| 118 | + </developer> |
| 119 | + <developer> |
| 120 | + <id>tweimer</id> |
| 121 | + <name>Tobias Weimer</name> |
| 122 | + <email>wishmaster51@gmail.com</email> |
| 123 | + </developer> |
| 124 | + </developers> |
116 | 125 |
|
117 |
| - <organization> |
118 |
| - <url>https://www.nist.gov/</url> |
119 |
| - <name>NIST</name> |
120 |
| - </organization> |
| 126 | + <organization> |
| 127 | + <url>https://www.nist.gov/</url> |
| 128 | + <name>NIST</name> |
| 129 | + </organization> |
121 | 130 | </project>
|
0 commit comments