Skip to content

Commit

Permalink
new update
Browse files Browse the repository at this point in the history
  • Loading branch information
shahaal authored and shahaal committed Sep 2, 2019
1 parent a6e590b commit 430a236
Show file tree
Hide file tree
Showing 24 changed files with 686 additions and 616 deletions.
2 changes: 0 additions & 2 deletions .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,5 @@
</classpathentry>
<classpathentry combineaccessrules="false" kind="src" path="/email-generator"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="var" path="JFace"/>
<classpathentry kind="var" path="SWT"/>
<classpathentry kind="output" path="target/classes"/>
</classpath>
3 changes: 3 additions & 0 deletions .settings/org.eclipse.jdt.core.prefs
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ org.eclipse.jdt.core.compiler.annotation.nonnullbydefault.secondary=
org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable
org.eclipse.jdt.core.compiler.annotation.nullable.secondary=
org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.problem.APILeak=warning
org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.autoboxing=ignore
org.eclipse.jdt.core.compiler.problem.comparingIdentical=warning
org.eclipse.jdt.core.compiler.problem.deadCode=warning
Expand All @@ -20,6 +22,7 @@ org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled
org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=disabled
org.eclipse.jdt.core.compiler.problem.discouragedReference=warning
org.eclipse.jdt.core.compiler.problem.emptyStatement=ignore
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.problem.explicitlyClosedAutoCloseable=ignore
org.eclipse.jdt.core.compiler.problem.fallthroughCase=ignore
org.eclipse.jdt.core.compiler.problem.fatalOptionalError=disabled
Expand Down
75 changes: 54 additions & 21 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,15 @@
<modelVersion>4.0.0</modelVersion>
<groupId>EFSA-RCL</groupId>
<artifactId>EFSA-RCL</artifactId>
<version>0.0.1-SNAPSHOT</version>

<version>1.0.0</version>

<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>Cp1252</project.build.sourceEncoding>
</properties>

<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>tests</testSourceDirectory>
Expand All @@ -29,14 +37,13 @@
</resource>
</resources>
<plugins>

<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.2</version>
</plugin>

</plugins>
</build>
<repositories>
Expand All @@ -50,7 +57,7 @@
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>[10.14.2.0,)</version>
<version>10.14.2.0</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
Expand Down Expand Up @@ -114,22 +121,48 @@
<artifactId>commons-io</artifactId>
<version>[2.6,)</version>
</dependency>
<!-- uncomment for swt 32bit
<!-- uncomment for swt 32bit <dependency> <groupId> org.eclipse.swt </groupId>
<artifactId>swt32</artifactId> <version>[3.7.1,)</version> </dependency> -->
<!-- uncomment for swt 64bit -->
<dependency>
<groupId> org.eclipse.swt</groupId>
<artifactId>swt64</artifactId>
<version>[3.7.1,)</version>
</dependency>
<dependency>
<groupId> org.eclipse.jface</groupId>
<artifactId>jface</artifactId>
<version>[3.7.0,)</version>
</dependency>
<dependency>
<groupId>DCF_webservice_framework</groupId>
<artifactId>DCF_webservice_framework</artifactId>
<version>[1.0.0,)</version>
</dependency>
<dependency>
<groupId>progress_bar</groupId>
<artifactId>progress_bar</artifactId>
<version>[1.0.0,)</version>
</dependency>
<dependency>
<groupId>window_size_save_and_restore</groupId>
<artifactId>window_size_save_and_restore</artifactId>
<version>[1.0.0,)</version>
</dependency>
<dependency>
<groupId>version_manager</groupId>
<artifactId>VersionManager</artifactId>
<version>[1.0.0,)</version>
</dependency>
<dependency>
<groupId>
org.eclipse.swt.org.eclipse.swt.win32.win32.x86.4.3.swt
</groupId>
<artifactId>org.eclipse.swt.win32.win32.x86</artifactId>
<version>[4.3,)</version>
<groupId>java_exception_manager</groupId>
<artifactId>java_exception_manager</artifactId>
<version>[1.0.0,)</version>
</dependency>
-->
<!-- uncomment for swt 64bit
<dependency>
<groupId> org.eclipse.swt.org.eclipse.swt.win32.win32.x86_64.4.3.swt
</groupId>
<artifactId>org.eclipse.swt.win32.win32.x86_64</artifactId>
<version>[4.3,)</version>
<groupId>email_generator</groupId>
<artifactId>email_generator</artifactId>
<version>[1.0.0,)</version>
</dependency>
-->
</dependencies>
</project>
2 changes: 1 addition & 1 deletion src/amend_manager/DatasetComparisonParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public DatasetComparisonParser(InputStream input,
this.isResultBlock = false;
this.endRecord = false;

// initialize xml parser
// initialise xml parser
XMLInputFactory factory = XMLInputFactory.newInstance();
factory.setProperty(XMLInputFactory.IS_COALESCING, true);
this.eventReader = factory.createXMLEventReader(input);
Expand Down
Loading

0 comments on commit 430a236

Please sign in to comment.