Skip to content

Commit

Permalink
Merge pull request #108 from diging/develop
Browse files Browse the repository at this point in the history
update dependencies
  • Loading branch information
jdamerow authored Feb 9, 2023
2 parents 29b546d + 04e00f7 commit a3d7045
Show file tree
Hide file tree
Showing 3 changed files with 98 additions and 10 deletions.
24 changes: 24 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Guidelines for Pull Requests

If you haven't yet read our code review guidelines, please do so, You can find them [here](https://diging.atlassian.net/wiki/spaces/DIGING/pages/2256076801/Code+Review+Guidelines).

Please confirm the following by adding an x for each item (turn `[ ]` into `[x]`).

- [ ] I have removed all code style changes that are not necessary (e.g. changing blanks across the whole file that don’t need to be changed, adding empty lines in parts other than your own code)
- [ ] I am not making any changes to files that don’t have any effect (e.g. imports added that don’t need to be added)
- [ ] I do not have any sysout statements in my code or commented out code that isn’t needed anymore
- [ ] I am not reformatting any files in the wrong format or without cause.
- [ ] I am not changing file encoding or line endings to something else than UTF-8, LF
- [ ] My pull request does not show an insane amount of files being changed although my ticket only requires a few files being changed
- [ ] I have added Javadoc/documentation where appropriate
- [ ] I have added test cases where appropriate
- [ ] I have explained any part of my code/implementation decisions that is not be self-explanatory

## Please provide a brief description of your ticket
(you can copy the ticket if it hasn't changed)

...Put description here...

## Anything else the reviewer needs to know?

... describe here; e.g. is there another pull request this pull request depends on? If so, link it here. ...
64 changes: 64 additions & 0 deletions checkstyle.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
<?xml version="1.0"?>
<!DOCTYPE module PUBLIC
"-//Puppy Crawl//DTD Check Configuration 1.3//EN"
"http://checkstyle.sourceforge.net/dtds/configuration_1_3.dtd">

<!--
Checkstyle is highly configurable. Be sure to read the documentation at http://checkstyle.sf.net
-->

<module name = "Checker">
<property name="charset" value="UTF-8"/>
<property name="severity" value="warning"/>
<property name="fileExtensions" value="java, properties, xml"/>
<module name="TreeWalker">
<module name="OuterTypeFilename"/>
<module name="IllegalTokenText">
<property name="tokens" value="STRING_LITERAL, CHAR_LITERAL"/>
<property name="format" value="\\u00(09|0(a|A)|0(c|C)|0(d|D)|22|27|5(C|c))|\\(0(10|11|12|14|15|42|47)|134)"/>
<property name="message" value="Consider using special escape sequence instead of octal value or Unicode escaped value."/>
</module>
<module name="AvoidEscapedUnicodeCharacters">
<property name="allowEscapesForControlCharacters" value="true"/>
<property name="allowByTailComment" value="true"/>
<property name="allowNonPrintableEscapes" value="true"/>
</module>
<module name="OneTopLevelClass"/>
<module name="NoLineWrap"/>
<module name="EmptyBlock">
<property name="option" value="TEXT"/>
<property name="tokens" value="LITERAL_TRY, LITERAL_FINALLY, LITERAL_IF, LITERAL_ELSE, LITERAL_SWITCH"/>
</module>
<module name="OneStatementPerLine"/>
<module name="MissingSwitchDefault"/>
<module name="NoFinalizer"/>
<module name="OverloadMethodsDeclarationOrder"/>
<module name="EmptyCatchBlock">
<property name="exceptionVariableName" value="expected|ignore"/>
</module>
<module name="UpperEll"/>

<!-- Rules from Sun's Java Style -->
<module name="IllegalImport"/>
<module name="EmptyStatement"/>
<module name="EqualsHashCode"/>
<module name="SimplifyBooleanReturn"/>
<module name="TodoComment">
<property name="format" value="(TODO)|(FIXME)"/>
<message key="todo.match" value="Resolve unexpected comment."/>
</module>

<!-- Custom -->
<module name="DefaultComesLast">
<property name="skipIfLastAndSharedWithCase" value="true"/>
</module>
<module name="Indentation">
<property name="basicOffset" value="4"/>
<property name="braceAdjustment" value="0"/>
<property name="caseIndent" value="4"/>
<property name="throwsIndent" value="4"/>
<property name="lineWrappingIndentation" value="4"/>
<property name="arrayInitIndent" value="4"/>
</module>
</module>
</module>
20 changes: 10 additions & 10 deletions giles-eco/pom.xml
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
<java-version>1.8</java-version>
<org.springframework-version>5.3.0</org.springframework-version>
<spring-data.version>Neumann-SR5</spring-data.version>
<spring-security-version>5.4.1</spring-security-version>
<spring-security-version>5.5.7</spring-security-version>
<spring-social.version>1.1.4.RELEASE</spring-social.version>
<spring-social-github.version>1.0.0.BUILD-SNAPSHOT</spring-social-github.version>
<org.slf4j-version>1.7.5</org.slf4j-version>
<com.fasterxml.jackson.version>2.12.0-rc1</com.fasterxml.jackson.version>
<com.fasterxml.jackson.version>2.12.7</com.fasterxml.jackson.version>

<geco.requests.version>0.13</geco.requests.version>
<geco.util.version>0.6</geco.util.version>
Expand Down Expand Up @@ -290,7 +290,7 @@
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.2</version>
<version>4.5.13</version>
</dependency>


Expand Down Expand Up @@ -354,7 +354,7 @@
<dependency>
<groupId>com.nimbusds</groupId>
<artifactId>nimbus-jose-jwt</artifactId>
<version>4.26.1</version>
<version>7.9</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.nimbusds/oauth2-oidc-sdk -->
<dependency>
Expand Down Expand Up @@ -393,7 +393,7 @@
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.4.1209</version>
<version>42.3.8</version>
</dependency>


Expand All @@ -402,14 +402,14 @@
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.3.2</version>
<version>1.3.3</version>
</dependency>

<!-- Apache Commons IO -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
<version>2.7</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-
Expand All @@ -424,7 +424,7 @@
<dependency>
<groupId>org.apache.pdfbox</groupId>
<artifactId>pdfbox</artifactId>
<version>2.0.2</version>
<version>2.0.24</version>
</dependency>
<dependency>
<groupId>org.apache.pdfbox</groupId>
Expand All @@ -441,7 +441,7 @@
<dependency>
<groupId>org.apache.tika</groupId>
<artifactId>tika-core</artifactId>
<version>1.13</version>
<version>1.22</version>
</dependency>
<dependency>
<groupId>org.apache.tika</groupId>
Expand All @@ -453,7 +453,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<version>4.13.1</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
Expand Down

0 comments on commit a3d7045

Please sign in to comment.