Skip to content
Closed
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
2 changes: 2 additions & 0 deletions .classpath
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Eclipse Project files should not be in SCM. Can you remove them and also add appropriate rules to your .gitignore please?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I do not really understand why this is worthy to block the merge of this PR.
As only one line was added (by @claudius108) it is clear that this file was in version control before.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

in this commit 2a0cf88

</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
Expand Down
Empty file modified .gitignore
100644 → 100755
Empty file.
Empty file modified .project
100644 → 100755
Empty file.
Empty file modified .settings/org.eclipse.core.resources.prefs
100644 → 100755
Empty file.
1 change: 1 addition & 0 deletions .settings/org.eclipse.jdt.core.prefs
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
org.eclipse.jdt.core.compiler.release=disabled
org.eclipse.jdt.core.compiler.source=1.8
Empty file modified .settings/org.eclipse.m2e.core.prefs
100644 → 100755
Empty file.
Empty file modified LICENSE
100644 → 100755
Empty file.
Empty file modified README.md
100644 → 100755
Empty file.
Empty file modified build/footer.html
100644 → 100755
Empty file.
Empty file modified build/header.html
100644 → 100755
Empty file.
Empty file modified build/ro.kuberam.expath.exist.crypto package.launch
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion build/xar-assembly.xml
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<tag>exist</tag>
<category id="libs">Libraries</category>
<category id="exist">eXist extensions</category>
<dependency processor="http://exist-db.org" semver-min="4.4.0" />
<dependency processor="http://exist-db.org" semver-min="5.3.0" />
<dependencySets>
<dependencySet>
<groupId>${project.groupId}</groupId>
Expand Down
27 changes: 5 additions & 22 deletions pom.xml
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<parent>
<groupId>ro.kuberam.expath.exist</groupId>
<artifactId>base</artifactId>
<version>1.5.4</version>
<version>5.3.0-SNAPSHOT</version>
</parent>

<artifactId>crypto</artifactId>
<version>0.7</version>
<version>6.0.0-RC1</version>
<name>eXist-db EXPath Cryptographic library</name>
<description>eXist-db wrapper for EXPath Cryptographic Java library</description>
<url>http://expath.org/spec/crypto</url>
Expand Down Expand Up @@ -44,7 +44,7 @@
</contributors>

<properties>
<crypto.java.lib.version>1.6</crypto.java.lib.version>
<crypto.java.lib.version>1.7</crypto.java.lib.version>
<package.title>EXPath Cryptographic Module Implementation</package.title>
</properties>

Expand Down Expand Up @@ -119,7 +119,7 @@
<version>2.1.0</version>
<executions>
<execution>
<phase>package</phase>
<phase>prepare-package</phase>
<goals>
<goal>generate</goal>
</goals>
Expand All @@ -129,26 +129,9 @@
<inputDirectory>${project.basedir}</inputDirectory>
<headerHtmlFile>${project.basedir}/build/header.html</headerHtmlFile>
<footerHtmlFile>${project.basedir}/build/footer.html</footerHtmlFile>
<defaultTitle>index.html</defaultTitle>
</configuration>
</plugin>
<plugin>
<groupId>com.coderplus.maven.plugins</groupId>
<artifactId>copy-rename-maven-plugin</artifactId>
<version>1.0.1</version>
<executions>
<execution>
<id>rename-readme-file</id>
<phase>package</phase>
<goals>
<goal>rename</goal>
</goals>
<configuration>
<sourceFile>${project.build.directory}/html/README.html</sourceFile>
<destinationFile>${project.build.directory}/html/index.html</destinationFile>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>ro.kuberam.maven.plugins</groupId>
<artifactId>kuberam-expath-plugin</artifactId>
Expand Down
Empty file.
Empty file.
Empty file.
Empty file modified src/main/java/org/expath/exist/crypto/ModuleProperties.java
100644 → 100755
Empty file.
Empty file modified src/main/java/org/expath/exist/crypto/digest/HashFunction.java
100644 → 100755
Empty file.
Empty file modified src/main/java/org/expath/exist/crypto/digest/HmacFunction.java
100644 → 100755
Empty file.
Loading