Skip to content

Commit 6ce5a35

Browse files
committed
code
1 parent 53df2ad commit 6ce5a35

File tree

6 files changed

+2596
-0
lines changed

6 files changed

+2596
-0
lines changed

code/seeker/nbactions.xml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<actions>
3+
<action>
4+
<actionName>debug</actionName>
5+
<packagings>
6+
<packaging>jar</packaging>
7+
</packagings>
8+
<goals>
9+
<goal>process-classes</goal>
10+
<goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
11+
</goals>
12+
<properties>
13+
<exec.args>-Xdebug -Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address} -classpath %classpath seeker.Main</exec.args>
14+
<exec.executable>java</exec.executable>
15+
<jpda.listen>true</jpda.listen>
16+
</properties>
17+
</action>
18+
<action>
19+
<actionName>run</actionName>
20+
<packagings>
21+
<packaging>jar</packaging>
22+
</packagings>
23+
<goals>
24+
<goal>process-classes</goal>
25+
<goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
26+
</goals>
27+
<properties>
28+
<exec.args>-classpath %classpath seeker.Main</exec.args>
29+
<exec.executable>java</exec.executable>
30+
</properties>
31+
</action>
32+
</actions>

code/seeker/pom.xml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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+
<groupId>seeker</groupId>
5+
<artifactId>seeker</artifactId>
6+
<version>01</version>
7+
<packaging>jar</packaging>
8+
<dependencies>
9+
<dependency>
10+
<groupId>com.opencsv</groupId>
11+
<artifactId>opencsv</artifactId>
12+
<version>4.1</version>
13+
<type>jar</type>
14+
</dependency>
15+
</dependencies>
16+
<properties>
17+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18+
<maven.compiler.source>1.8</maven.compiler.source>
19+
<maven.compiler.target>1.8</maven.compiler.target>
20+
</properties>
21+
<name>seeker</name>
22+
</project>

0 commit comments

Comments
 (0)