Skip to content

Commit

Permalink
Merge pull request #190 from keeps/bf-permissive
Browse files Browse the repository at this point in the history
Permissive approach and some fixes
  • Loading branch information
chalkos committed May 11, 2016
2 parents c23f56b + ba347b7 commit 95bb47b
Show file tree
Hide file tree
Showing 127 changed files with 4,944 additions and 4,352 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ target/
**/.DS_Store

log/
dbptk-report-*
dbptk-app.log
dbptk-app.log.txt
exported-dbs/
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: java
sudo: false
script: mvn -Dtestng.groups="travis-ci" clean verify
script: mvn -Dtestng.groups="travis-ci" -Dlogback.configurationFile=logback-travis.xml verify
jdk:
- oraclejdk8
- oraclejdk7
Expand Down
2 changes: 1 addition & 1 deletion dbptk-bindings/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>com.databasepreservation</groupId>
<artifactId>dbptk</artifactId>
<version>2.0.0-beta4.0</version>
<version>2.0.0-beta4.2</version>
<relativePath>..</relativePath>
</parent>
<packaging>pom</packaging>
Expand Down
36 changes: 17 additions & 19 deletions dbptk-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<name>dbptk-core</name>
<groupId>com.databasepreservation</groupId>
<artifactId>dbptk-core</artifactId>
<version>2.0.0-beta4.0</version>
<version>2.0.0-beta4.2</version>
<parent>
<groupId>com.databasepreservation</groupId>
<artifactId>dbptk</artifactId>
<version>2.0.0-beta4.0</version>
<version>2.0.0-beta4.2</version>
<relativePath>..</relativePath>
</parent>
<properties>
Expand Down Expand Up @@ -60,6 +60,7 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<configuration>
<argLine>-Xmx128m</argLine>
<suiteXmlFiles>
<suiteXmlFile>${basedir}/testng.xml</suiteXmlFile>
</suiteXmlFiles>
Expand Down Expand Up @@ -109,10 +110,6 @@
<groupId>org.w3c</groupId>
<artifactId>w3c-utils</artifactId>
</dependency>
<dependency>
<groupId>pt.keep</groupId>
<artifactId>file-format-utility</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
Expand All @@ -129,10 +126,6 @@
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</dependency>
<dependency>
<groupId>commons-transaction</groupId>
<artifactId>commons-transaction</artifactId>
Expand All @@ -144,25 +137,30 @@
<dependency>
<groupId>org.jdom</groupId>
<artifactId>jdom2</artifactId>
<version>2.0.6</version>
</dependency>
<dependency>
<groupId>org.apache.tika</groupId>
<artifactId>tika-core</artifactId>
<version>1.10</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>

<!-- database connectors -->
<!-- database connectors -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>pt.gov.dgarq.roda</groupId>
<artifactId>mets-1.7</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.microsoft.sqlserver.jdbc</groupId>
<artifactId>sqljdbc4</artifactId>
Expand Down Expand Up @@ -200,5 +198,5 @@
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</dependencies>
</project>
Loading

0 comments on commit 95bb47b

Please sign in to comment.