Skip to content

Commit

Permalink
updating gradle to be compatible with v7 and change to header
Browse files Browse the repository at this point in the history
  • Loading branch information
jdeck88 committed Jul 22, 2021
1 parent bfcc8e8 commit f0c6584
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 15 deletions.
30 changes: 15 additions & 15 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,25 @@ repositories {
}

dependencies {
compile 'org.glassfish.jersey.containers:jersey-container-servlet:2.30'
compile group: 'org.glassfish.jersey.inject', name: 'jersey-hk2', version: '2.30'
compile group: 'org.glassfish.corba', name: 'glassfish-corba-omgapi', version: '4.0.2-b011'
compile group: 'org.glassfish.jaxb', name: 'jaxb-runtime', version: '2.3.2'
compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
compile group: 'org.apache.commons', name: 'commons-compress', version: '1.19'
compile group: 'commons-io', name: 'commons-io', version: '2.6'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.9'
compile group: 'commons-digester', name: 'commons-digester', version: '2.1'
compile group: 'org.jsoup', name: 'jsoup', version: '1.12.1'
compile group: 'org.imgscalr', name: 'imgscalr-lib', version: '4.2'
//compile group: 'javax.media', name: 'jai_codec', version: '1.1.3'
//compile group: 'com.sun', name: 'jai_core', version: '1.1.3'
compile group: 'com.github.jai-imageio', name: 'jai-imageio-core', version: '1.4.0'
implementation 'org.glassfish.jersey.containers:jersey-container-servlet:2.30'
implementation group: 'org.glassfish.jersey.inject', name: 'jersey-hk2', version: '2.30'
implementation group: 'org.glassfish.corba', name: 'glassfish-corba-omgapi', version: '4.0.2-b011'
implementation group: 'org.glassfish.jaxb', name: 'jaxb-runtime', version: '2.3.2'
implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
implementation group: 'org.apache.commons', name: 'commons-compress', version: '1.19'
implementation group: 'commons-io', name: 'commons-io', version: '2.6'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.9'
implementation group: 'commons-digester', name: 'commons-digester', version: '2.1'
implementation group: 'org.jsoup', name: 'jsoup', version: '1.12.1'
implementation group: 'org.imgscalr', name: 'imgscalr-lib', version: '4.2'
//implementation group: 'javax.media', name: 'jai_codec', version: '1.1.3'
//implementation group: 'com.sun', name: 'jai_core', version: '1.1.3'
implementation group: 'com.github.jai-imageio', name: 'jai-imageio-core', version: '1.4.0'
// needed for the images functions
providedCompile group: 'javax.servlet', name: 'javax.servlet-api', version: '3.1.0'

// was version 5.0.8
compile group: 'mysql', name: 'mysql-connector-java', version: '8.0.19'
implementation group: 'mysql', name: 'mysql-connector-java', version: '8.0.19'
}

war {
Expand Down
Empty file added settings.gradle
Empty file.
1 change: 1 addition & 0 deletions src/main/webapp/header-home.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
<li><a href="about.jsp">About</a></li>
<li><a href="citation.jsp">Citation Help</a></li>
<li><a href="https://mvzarchives.berkeley.edu/">MVZArchives</a></li>
<li><a href="https://calphotos.berkeley.edu/mvz.html" target="_blank">Photo Archive</a></li>
</ul>
</div><!--close menu-->
</div><!--close menubar-->
Expand Down

0 comments on commit f0c6584

Please sign in to comment.