File tree Expand file tree Collapse file tree 5 files changed +594
-0
lines changed
src/main/java/ds/bloomfilterimpl Expand file tree Collapse file tree 5 files changed +594
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <actions >
3
+ <action >
4
+ <actionName >run</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.5.0:exec</goal >
11
+ </goals >
12
+ <properties >
13
+ <exec .args>-classpath %classpath ds.bloomfilterimpl.Main</exec .args>
14
+ <exec .executable>java</exec .executable>
15
+ </properties >
16
+ </action >
17
+ </actions >
Original file line number Diff line number Diff line change
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 >ds</groupId >
5
+ <artifactId >BloomFilterImpl</artifactId >
6
+ <version >1.0</version >
7
+ <packaging >jar</packaging >
8
+ <properties >
9
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
10
+ <maven .compiler.source>1.8</maven .compiler.source>
11
+ <maven .compiler.target>1.8</maven .compiler.target>
12
+ </properties >
13
+ </project >
You can’t perform that action at this time.
0 commit comments