diff --git a/.idea/modules/httpstatus.iml b/.idea/modules/httpstatus.iml index 53f906e..a0b1173 100644 --- a/.idea/modules/httpstatus.iml +++ b/.idea/modules/httpstatus.iml @@ -1,8 +1,8 @@ - + - - + + @@ -11,6 +11,7 @@ + @@ -20,8 +21,7 @@ - - - + + \ No newline at end of file diff --git a/HttpStatus.ipr b/HttpStatus.ipr index 972336d..f191f46 100644 --- a/HttpStatus.ipr +++ b/HttpStatus.ipr @@ -194,7 +194,7 @@ - + @@ -298,13 +298,13 @@ - + - + - + @@ -325,22 +325,13 @@ - + - + - - - - - - - - - - + diff --git a/README.md b/README.md index ac47807..05164ac 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # HttpStatus JSP Tag Library [![License (3-Clause BSD)](https://img.shields.io/badge/license-BSD%203--Clause-blue.svg?style=flat-square)](http://opensource.org/licenses/BSD-3-Clause) [![release](http://github-release-version.herokuapp.com/github/ethauvin/httpstatus/release.svg?style=flat)](https://github.com/ethauvin/httpstatus/releases/latest) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/net.thauvin.erik.httpstatus/httpstatus/badge.svg)](https://maven-badges.herokuapp.com/maven-central/net.thauvin.erik.httpstatus/httpstatus) [ ![Download](https://api.bintray.com/packages/ethauvin/maven/HttpStatus/images/download.svg) ](https://bintray.com/ethauvin/maven/HttpStatus/_latestVersion) -[![Dependency Status](https://www.versioneye.com/user/projects/56a6947a1b78fd002d00018a/badge.svg?style=flat)](https://www.versioneye.com/user/projects/56a6947a1b78fd002d00018a) [![Build Status](https://travis-ci.org/ethauvin/HttpStatus.svg?branch=master)](https://travis-ci.org/ethauvin/HttpStatus) [![Build status](https://ci.appveyor.com/api/projects/status/w5j4kul3w2rkigxb?svg=true)](https://ci.appveyor.com/project/ethauvin/httpstatus) [![CircleCI](https://circleci.com/gh/ethauvin/HttpStatus/tree/master.svg?style=shield)](https://circleci.com/gh/ethauvin/HttpStatus/tree/master) +[![Dependency Status](https://beta.gemnasium.com/badges/github.com/ethauvin/HttpStatus.svg)](https://beta.gemnasium.com/projects/github.com/ethauvin/HttpStatus) [![Build Status](https://travis-ci.org/ethauvin/HttpStatus.svg?branch=master)](https://travis-ci.org/ethauvin/HttpStatus) [![Build status](https://ci.appveyor.com/api/projects/status/w5j4kul3w2rkigxb?svg=true)](https://ci.appveyor.com/project/ethauvin/httpstatus) [![CircleCI](https://circleci.com/gh/ethauvin/HttpStatus/tree/master.svg?style=shield)](https://circleci.com/gh/ethauvin/HttpStatus/tree/master) A simple [JSP](http://www.oracle.com/technetwork/java/javaee/jsp/index.html) Tag Library to display the [code](#hscode), [reason](#hsreason) and/or [cause](#hscode) for [HTTP status codes](http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html) in JSP error pages. diff --git a/build.gradle b/build.gradle index 12cf843..61f28e2 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ plugins { - id "com.jfrog.bintray" version "1.7.3" + id "com.jfrog.bintray" version "1.8.0" id "com.github.ben-manes.versions" version "0.17.0" } apply plugin: 'java' @@ -68,7 +68,7 @@ dependencies { compile 'javax.servlet:javax.servlet-api:3.1.0' compile 'javax.servlet.jsp:jsp-api:2.2' - testCompile 'org.testng:testng:6.12' + testCompile 'org.testng:testng:6.13.1' } bintray { @@ -237,4 +237,14 @@ task pandoc(type: Exec) { ext.output = { return standardOutput.toString() } +} + +task pom2xml { + pom { + project { + groupId project.group + artifactId rootProject.name + version project.version + } + }.writeTo("pom.xml") } \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index ed88a04..27768f1 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 731147b..62e1e30 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,4 +1,4 @@ -distributionUrl=https\://services.gradle.org/distributions/gradle-4.2.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-4.3-bin.zip distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStorePath=wrapper/dists diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..033c2a0 --- /dev/null +++ b/pom.xml @@ -0,0 +1,28 @@ + + + 4.0.0 + net.thauvin.erik.httpstatus + httpstatus + 1.0.3 + + + javax.servlet + javax.servlet-api + 3.1.0 + compile + + + javax.servlet.jsp + jsp-api + 2.2 + compile + + + org.testng + testng + 6.13.1 + test + + +