Compare commits

...

3 Commits

Author SHA1 Message Date
Robinson 5d9a8c3785
Updated build deps 2023-06-07 22:49:09 +02:00
Robinson b8b95879e0
Updated version + license 2023-01-22 20:31:04 +01:00
Robinson b5ab2f4fe8
removed sorting 2023-01-22 20:30:27 +01:00
4 changed files with 9 additions and 16 deletions

View File

@ -14,7 +14,7 @@ Maven Info
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>MinLog</artifactId>
<version>2.4</version>
<version>2.5</version>
</dependency>
</dependencies>
```
@ -24,7 +24,7 @@ Gradle Info
```
dependencies {
...
implementation("com.dorkbox:MinLog:2.4")
implementation("com.dorkbox:MinLog:2.5")
}
```

View File

@ -14,8 +14,6 @@
* limitations under the License.
*/
import java.time.Instant
///////////////////////////////
////// PUBLISH TO SONATYPE / MAVEN CENTRAL
////// TESTING : (to local maven repo) <'publish and release' - 'publishToMavenLocal'>
@ -26,17 +24,17 @@ gradle.startParameter.showStacktrace = ShowStacktrace.ALWAYS // always show th
plugins {
id("com.dorkbox.GradleUtils") version "3.9"
id("com.dorkbox.Licensing") version "2.19.1"
id("com.dorkbox.VersionUpdate") version "2.5"
id("com.dorkbox.GradlePublish") version "1.17"
id("com.dorkbox.GradleUtils") version "3.17"
id("com.dorkbox.Licensing") version "2.22"
id("com.dorkbox.VersionUpdate") version "2.8"
id("com.dorkbox.GradlePublish") version "1.18"
}
object Extras {
// set for the project
const val description = "Drop-in replacement for MinLog to log through SLF4j."
const val group = "com.dorkbox"
const val version = "2.4"
const val version = "2.5"
// set as project.ext
const val name = "MinLog-SLF4J"
@ -44,8 +42,6 @@ object Extras {
const val vendor = "Dorkbox LLC"
const val vendorUrl = "https://dorkbox.com"
const val url = "https://git.dorkbox.com/dorkbox/MinLog-SLF4J"
val buildDate = Instant.now().toString()
}
///////////////////////////////
@ -78,7 +74,7 @@ tasks.jar.get().apply {
attributes["Specification-Vendor"] = Extras.vendor
attributes["Implementation-Title"] = "${Extras.group}.${Extras.id}"
attributes["Implementation-Version"] = Extras.buildDate
attributes["Implementation-Version"] = GradleUtils.now()
attributes["Implementation-Vendor"] = Extras.vendor
}
}

View File

@ -13,6 +13,3 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Sort via the number of other dorkbox dependencies
rootProject.name = "1_${rootProject.name}"

View File

@ -60,7 +60,7 @@ public class Log {
*/
public static
String getVersion() {
return "2.4";
return "2.5";
}
static {