Codebase list curvesapi / 04a1951
Import upstream version 1.07 Debian Janitor 2 years ago
2 changed file(s) with 14 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
1616 List of changes
1717 ---------------
1818
19 * Version has been bumped to 1.06
19 * Version has been bumped to 1.07
2020 * The javadocs have been removed from this distribution
2121 * The build scripts have been removed and pom.xml has been added to support
2222 usage with maven
11 <modelVersion>4.0.0</modelVersion>
22 <groupId>com.github.virtuald</groupId>
33 <artifactId>curvesapi</artifactId>
4 <version>1.06</version>
4 <version>1.07</version>
55 <name>curvesapi</name>
66 <description>Implementation of various mathematical curves that define themselves over a set of control points. The API is written in Java. The curves supported are: Bezier, B-Spline, Cardinal Spline, Catmull-Rom Spline, Lagrange, Natural Cubic Spline, and NURBS.</description>
77 <url>https://github.com/virtuald/curvesapi</url>
1414 <configuration>
1515 <source>1.5</source>
1616 <target>1.5</target>
17 </configuration>
18 </plugin>
19 <plugin>
20 <groupId>org.apache.maven.plugins</groupId>
21 <artifactId>maven-jar-plugin</artifactId>
22 <configuration>
23 <archive>
24 <manifestEntries>
25 <Automatic-Module-Name>com.github.virtuald.curvesapi</Automatic-Module-Name>
26 </manifestEntries>
27 </archive>
1728 </configuration>
1829 </plugin>
1930 </plugins>
114125 <dependency>
115126 <groupId>junit</groupId>
116127 <artifactId>junit</artifactId>
117 <version>4.12</version>
128 <version>4.13.2</version>
118129 <scope>test</scope>
119130 </dependency>
120131 </dependencies>