Skip to content

Commit d24dde5

Browse files
committed
Add pom.xml
Create initial pom
1 parent 2fabccb commit d24dde5

File tree

1 file changed

+138
-0
lines changed

1 file changed

+138
-0
lines changed

pom.xml

Lines changed: 138 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
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">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<parent>
6+
<groupId>org.scijava</groupId>
7+
<artifactId>pom-scijava</artifactId>
8+
<version>2.25</version>
9+
<relativePath />
10+
</parent>
11+
12+
<artifactId>scripting-matlab</artifactId>
13+
<version>0.1.0-SNAPSHOT</version>
14+
15+
<name>SciJava Scripting: Matlab</name>
16+
<description>Matlab scripting language plugin.</description>
17+
<url>http://scijava.org/</url>
18+
<inceptionYear>2014</inceptionYear>
19+
20+
<licenses>
21+
<license>
22+
<name>Simplified BSD License</name>
23+
<distribution>repo</distribution>
24+
</license>
25+
</licenses>
26+
27+
<developers>
28+
<developer>
29+
<id>hinerm</id>
30+
<name>Mark Hiner</name>
31+
<email>[email protected]</email>
32+
<url>http://loci.wisc.edu/people/mark-hiner</url>
33+
<organization>UW-Madison LOCI</organization>
34+
<organizationUrl>http://loci.wisc.edu/</organizationUrl>
35+
<roles>
36+
<role>architect</role>
37+
<role>developer</role>
38+
</roles>
39+
<timezone>-6</timezone>
40+
</developer>
41+
<developer>
42+
<id>dscho</id>
43+
<name>Johannes Schindelin</name>
44+
<email>[email protected]</email>
45+
<url>http://loci.wisc.edu/people/johannes-schindelin</url>
46+
<organization>UW-Madison LOCI</organization>
47+
<organizationUrl>http://loci.wisc.edu/</organizationUrl>
48+
<roles>
49+
<role>architect</role>
50+
<role>developer</role>
51+
</roles>
52+
<timezone>-6</timezone>
53+
</developer>
54+
<developer>
55+
<id>ctrueden</id>
56+
<name>Curtis Rueden</name>
57+
<email>[email protected]</email>
58+
<url>http://loci.wisc.edu/people/curtis-rueden</url>
59+
<organization>UW-Madison LOCI</organization>
60+
<organizationUrl>http://loci.wisc.edu/</organizationUrl>
61+
<roles>
62+
<role>architect</role>
63+
<role>developer</role>
64+
</roles>
65+
<timezone>-6</timezone>
66+
</developer>
67+
</developers>
68+
69+
<mailingLists>
70+
<mailingList>
71+
<name>SciJava</name>
72+
<subscribe>https://groups.google.com/group/scijava</subscribe>
73+
<unsubscribe>https://groups.google.com/group/scijava</unsubscribe>
74+
<post>[email protected]</post>
75+
<archive>https://groups.google.com/group/scijava</archive>
76+
</mailingList>
77+
</mailingLists>
78+
79+
<scm>
80+
<connection>scm:git:git://github.com/scijava/scripting-matlab</connection>
81+
<developerConnection>scm:git:[email protected]:scijava/scripting-matlab</developerConnection>
82+
<tag>HEAD</tag>
83+
<url>https://github.com/scijava/scripting-matlab</url>
84+
</scm>
85+
86+
<issueManagement>
87+
<system>GitHub Issues</system>
88+
<url>https://github.com/scijava/scripting-matlab/issues</url>
89+
</issueManagement>
90+
91+
<ciManagement>
92+
<system>Jenkins</system>
93+
<url>https://jenkins.imagej.net/job/scripting-Matlab/</url>
94+
</ciManagement>
95+
96+
<dependencies>
97+
<!-- SciJava dependencies -->
98+
<dependency>
99+
<groupId>org.scijava</groupId>
100+
<artifactId>scijava-common</artifactId>
101+
</dependency>
102+
103+
<!-- Third-party dependencies -->
104+
105+
<!-- Test dependencies -->
106+
<dependency>
107+
<groupId>junit</groupId>
108+
<artifactId>junit</artifactId>
109+
<scope>test</scope>
110+
</dependency>
111+
</dependencies>
112+
113+
<build>
114+
<plugins>
115+
<plugin>
116+
<artifactId>maven-jar-plugin</artifactId>
117+
<configuration>
118+
<archive>
119+
<manifest>
120+
<packageName>org.scijava.plugins.scripting.matlab</packageName>
121+
</manifest>
122+
</archive>
123+
</configuration>
124+
</plugin>
125+
<plugin>
126+
<groupId>org.codehaus.mojo</groupId>
127+
<artifactId>license-maven-plugin</artifactId>
128+
<configuration>
129+
<licenseName>bsd_2</licenseName>
130+
<organizationName>Board of Regents of the University of
131+
Wisconsin-Madison, Broad Institute of MIT and Harvard, and Max Planck
132+
Institute of Molecular Cell Biology and Genetics.</organizationName>
133+
</configuration>
134+
</plugin>
135+
</plugins>
136+
</build>
137+
138+
</project>

0 commit comments

Comments
 (0)