Skip to content
This repository was archived by the owner on Jun 1, 2021. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*~
*.class
*.jar
/target
Binary file removed ChiSquare.class
Binary file not shown.
Binary file removed Fuse.class
Binary file not shown.
Binary file removed ImageFileManager.class
Binary file not shown.
Binary file removed PixelBenchmark.class
Binary file not shown.
Binary file removed PrimarySets.class
Binary file not shown.
72 changes: 0 additions & 72 deletions README.md~

This file was deleted.

Binary file removed RSAnalysis.class
Binary file not shown.
Binary file removed RunStegExpose.class
Binary file not shown.
Binary file removed SamplePairs.class
Binary file not shown.
Binary file removed StegExpose.jar
Binary file not shown.
Binary file removed commons-math3-3.1.1.jar
Binary file not shown.
4 changes: 0 additions & 4 deletions manifest.mf

This file was deleted.

76 changes: 76 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
<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/maven-v4_0_0.xsd">

<modelVersion>4.0.0</modelVersion>
<groupId>stegexpose</groupId>
<artifactId>StegExpose</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>StegExpose</name>

<url>https://github.com/b3dk7/StegExpose</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<build>
<finalName>StegExpose</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>RunStegExpose</mainClass>
</manifest>
</archive>
</configuration>
</plugin>

<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>RunStegExpose</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>

</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
<version>3.1.1</version>
</dependency>
</dependencies>

</project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.