Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed Integration Bugs #187

Merged
merged 1 commit into from
Mar 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pi4micronaut-utils/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ bin/
build/
target/
out/
src/docs/javadoc
.micronaut/
.idea
*.iml
Expand Down
8 changes: 5 additions & 3 deletions pi4micronaut-utils/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = 'io.github.oss-slu'
version = 'v1.0'
version = '1.0'

apply plugin: 'maven-publish'
apply plugin: 'signing'
Expand Down Expand Up @@ -35,6 +35,8 @@ java {
targetCompatibility = JavaVersion.toVersion("17")
}

tasks.build.dependsOn {tasks.javadoc; tasks.shadowJar}

tasks.named('build').configure {
dependsOn 'javadoc'
copy {
Expand Down Expand Up @@ -77,7 +79,7 @@ artifacts {

publishing {
repositories {
maven { //only for users registered in Sonatype after 24 Feb 2021
maven {
name = "OSSRH"
credentials {
username = project.findProperty('SONATYPE_USERNAME') ?: System.getenv('SONATYPE_USERNAME')
Expand All @@ -93,7 +95,7 @@ publishing {
mavenJava(MavenPublication) {
groupId = 'io.github.oss-slu'
artifactId = 'pi4micronaut-utils'
version = 'v0.1'
version = '1.0'
from components.java

artifact sourcesJar
Expand Down
147 changes: 0 additions & 147 deletions pi4micronaut-utils/src/docs/javadoc/allclasses-index.html

This file was deleted.

71 changes: 0 additions & 71 deletions pi4micronaut-utils/src/docs/javadoc/allpackages-index.html

This file was deleted.

Loading
Loading