Skip to content

Commit ee72233

Browse files
committed
Added new plugin 2D Preprocess
1 parent 80aba98 commit ee72233

File tree

6 files changed

+1322
-0
lines changed

6 files changed

+1322
-0
lines changed

Diff for: csaj-plugin2d-preprocess/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/.classpath
2+
/.project
3+
/.settings/
4+
/target/

Diff for: csaj-plugin2d-preprocess/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
This is a Maven project implementing an ImageJ2 plugin.
2+
Copyright (c) Comsystan Software
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<#-- To render the description of a license file header.
2+
Available context :
3+
- project the maven project
4+
- addSvnKeyWords
5+
- organizationName
6+
- projectName
7+
- inceptionYear
8+
- file current file to treat
9+
-->
10+
Project: ${projectName}
11+
File: ${file.name}
12+
13+
$Id$
14+
$HeadURL$
15+
16+
This file is part of ComsystanJ software, hereinafter referred to as "this program".

Diff for: csaj-plugin2d-preprocess/pom.xml

+145
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,145 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
5+
http://maven.apache.org/xsd/maven-4.0.0.xsd">
6+
<modelVersion>4.0.0</modelVersion>
7+
8+
<parent>
9+
<groupId>org.scijava</groupId>
10+
<artifactId>pom-scijava</artifactId>
11+
<version>36.0.0</version><!--pom-scijava version-->
12+
<relativePath/>
13+
</parent>
14+
15+
<groupId>at.csa.csaj</groupId>
16+
<artifactId>csaj-plugin2d-preprocess</artifactId>
17+
<version>1.1.1</version><!--ComsystanJ version-->
18+
19+
<name>2D Image - Preprocess</name>
20+
<description>ImageJ2 plugin for preprocessing.</description>
21+
<url>https://github.com/comsystan/comsystanj</url>
22+
<inceptionYear>2023</inceptionYear>
23+
<organization>
24+
<name>comsystan</name>
25+
<url>https://github.com/comsystan</url>
26+
</organization>
27+
<licenses>
28+
<license>
29+
<name>GPL-3</name>
30+
<distribution>repo</distribution>
31+
</license>
32+
</licenses>
33+
34+
<developers>
35+
<developer>
36+
<id>ahammer</id>
37+
<name>Helmut Ahammer</name>
38+
<url></url>
39+
<roles>
40+
<role>founder</role>
41+
<role>lead</role>
42+
<role>developer</role>
43+
<role>debugger</role>
44+
<role>reviewer</role>
45+
<role>support</role>
46+
<role>maintainer</role>
47+
</roles>
48+
</developer>
49+
</developers>
50+
<contributors>
51+
<contributor>
52+
<name>Helmut Ahammer</name>
53+
<url></url>
54+
<properties><id></id></properties>
55+
</contributor>
56+
<contributor>
57+
<name>Ion Andronache</name>
58+
<url></url>
59+
<properties><id></id></properties>
60+
</contributor>
61+
</contributors>
62+
63+
<mailingLists>
64+
<mailingList>
65+
<name>Image.sc Forum</name>
66+
<archive>https://forum.image.sc/tags/imagej</archive>
67+
</mailingList>
68+
</mailingLists>
69+
70+
<scm>
71+
<connection>scm:git:https://github.com/comsystan/comsystanj</connection>
72+
<developerConnection>scm:git:[email protected]:comsystan/comsystanj</developerConnection>
73+
<tag>HEAD</tag>
74+
<url>https://github.com/comsystan/comsystanj</url>
75+
</scm>
76+
<issueManagement>
77+
<system>GitHub Issues</system>
78+
<url>https://github.com/comsystan/comsystanj/issues</url>
79+
</issueManagement>
80+
<ciManagement>
81+
<system>None</system>
82+
</ciManagement>
83+
84+
<properties>
85+
<package-name>at.csa.csaj.plugin2d.preprocess</package-name>
86+
<main-class>at.csa.csaj.plugin2d.preprocess.Csaj2DPreprocess</main-class>
87+
<license.licenseName>gpl_v3</license.licenseName>
88+
<license.copyrightOwners>Comsystan Software</license.copyrightOwners>
89+
</properties>
90+
91+
<repositories>
92+
<repository>
93+
<id>scijava.public</id>
94+
<url>https://maven.scijava.org/content/groups/public</url>
95+
</repository>
96+
</repositories>
97+
98+
<dependencies>
99+
<dependency>
100+
<groupId>at.csa.csaj</groupId>
101+
<artifactId>csaj-commons</artifactId>
102+
<version>1.1.1</version><!--ComsystanJ version-->
103+
</dependency>
104+
</dependencies>
105+
<build>
106+
<plugins>
107+
<plugin>
108+
<groupId>org.codehaus.mojo</groupId>
109+
<artifactId>license-maven-plugin</artifactId>
110+
<version>2.0.0</version><!--license-maven-plugin version-->
111+
<configuration>
112+
<verbose>false</verbose>
113+
<canUpdateCopyright>true</canUpdateCopyright>
114+
<canUpdateDescription>true</canUpdateDescription>
115+
</configuration>
116+
<executions>
117+
<execution>
118+
<id>update-source-file-headers</id>
119+
<goals>
120+
<goal>update-file-header</goal>
121+
</goals>
122+
<phase>process-sources</phase>
123+
<configuration>
124+
<!--<licenseName>gpl_v3</licenseName>-->
125+
<roots>
126+
<root>src/main</root>
127+
<root>src/test</root>
128+
</roots>
129+
<excludes>
130+
<exclude>**/*/log4j.dtd</exclude>
131+
<exclude>src/assembly</exclude>
132+
<exclude>src/license</exclude>
133+
<exclude>src/macosx</exclude>
134+
</excludes>
135+
<descriptionTemplate>
136+
<!--${project.rootdir}/license/descriptionTemplate.ftl-->
137+
${basedir}/license/descriptionTemplate.ftl
138+
</descriptionTemplate>
139+
</configuration>
140+
</execution>
141+
</executions>
142+
</plugin>
143+
</plugins>
144+
</build>
145+
</project>

0 commit comments

Comments
 (0)