Skip to content

Commit

Permalink
Release 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kokorin committed Dec 3, 2023
1 parent 6a2a8c1 commit 45b5fd2
Show file tree
Hide file tree
Showing 9 changed files with 37 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ jobs:
run: bash mvnw -B clean install

- name: Release
run: bash mvnw -B clean deploy -Prelease
run: bash mvnw -B clean deploy -Prelease -pl '!lombok-unshaded'
2 changes: 1 addition & 1 deletion .github/workflows/maven-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Initialize
run: bash mvnw initialize -B

- name: Build & Test
- name: Build
run: bash mvnw clean install -B

- name: Test Spring Boot Example
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Lombok extension which generates Presence Checker methods
<dependency>
<groupId>com.github.kokorin.lombok</groupId>
<artifactId>lombok-presence-checker</artifactId>
<version>0.0.2-SNAPSHOT</version>
<version>0.0.2</version>
<scope>provided</scope>
</dependency>

Expand All @@ -50,7 +50,7 @@ Lombok extension which generates Presence Checker methods
<path>
<groupId>com.github.kokorin.lombok</groupId>
<artifactId>lombok-presence-checker</artifactId>
<version>0.0.2-SNAPSHOT</version>
<version>0.0.2</version>
</path>
<path>
<groupId>org.mapstruct</groupId>
Expand Down
6 changes: 3 additions & 3 deletions lombok-presence-checker-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>com.github.kokorin.lombok</groupId>
<artifactId>lombok-presence-checker-example</artifactId>
<version>0.0.2-SNAPSHOT</version>
<version>0.0.2</version>

<description>Lombok Presence Checker example</description>

Expand Down Expand Up @@ -39,7 +39,7 @@
<dependency>
<groupId>com.github.kokorin.lombok</groupId>
<artifactId>lombok-presence-checker</artifactId>
<version>0.0.2-SNAPSHOT</version>
<version>0.0.2</version>
<scope>provided</scope>
</dependency>

Expand Down Expand Up @@ -83,7 +83,7 @@
<path>
<groupId>com.github.kokorin.lombok</groupId>
<artifactId>lombok-presence-checker</artifactId>
<version>0.0.2-SNAPSHOT</version>
<version>0.0.2</version>
</path>
<path>
<groupId>org.mapstruct</groupId>
Expand Down
13 changes: 11 additions & 2 deletions lombok-presence-checker-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>lombok-presence-checker-parent</artifactId>
<groupId>com.github.kokorin.lombok</groupId>
<version>0.0.2-SNAPSHOT</version>
<version>0.0.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down Expand Up @@ -36,6 +36,15 @@
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
Expand All @@ -51,7 +60,7 @@
<path>
<groupId>com.github.kokorin.lombok</groupId>
<artifactId>lombok-presence-checker</artifactId>
<version>0.0.2-SNAPSHOT</version>
<version>0.0.2</version>
</path>
<path>
<groupId>org.mapstruct</groupId>
Expand Down
6 changes: 3 additions & 3 deletions lombok-presence-checker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>lombok-presence-checker-parent</artifactId>
<groupId>com.github.kokorin.lombok</groupId>
<version>0.0.2-SNAPSHOT</version>
<artifactId>lombok-presence-checker-parent</artifactId>
<version>0.0.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -27,7 +27,7 @@
</dependency>

<dependency>
<groupId>org.projectlombok</groupId>
<groupId>com.github.kokorin.lombok</groupId>
<artifactId>lombok-unshaded</artifactId>
<version>${lombok.version}</version>
<optional>true</optional>
Expand Down
12 changes: 9 additions & 3 deletions lombok-unshaded/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,10 @@
<parent>
<artifactId>lombok-presence-checker-parent</artifactId>
<groupId>com.github.kokorin.lombok</groupId>
<version>0.0.2-SNAPSHOT</version>
<version>0.0.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>org.projectlombok</groupId>
<artifactId>lombok-unshaded</artifactId>
<version>${lombok.version}</version>

Expand All @@ -21,7 +20,14 @@
</dependencies>

<build>
<plugins>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
Expand Down
Empty file modified mvnw
100644 → 100755
Empty file.
9 changes: 7 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.github.kokorin.lombok</groupId>
<artifactId>lombok-presence-checker-parent</artifactId>
<packaging>pom</packaging>
<version>0.0.2-SNAPSHOT</version>
<version>0.0.2</version>

<name>lombok-presence-checker</name>
<description>Lombok extension which generates Presence Checker methods</description>
Expand Down Expand Up @@ -67,7 +67,7 @@
<dependency>
<groupId>com.github.kokorin.lombok</groupId>
<artifactId>lombok-presence-checker</artifactId>
<version>0.0.2-SNAPSHOT</version>
<version>0.0.2</version>
<scope>provided</scope>
</dependency>

Expand All @@ -93,6 +93,11 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
Expand Down

0 comments on commit 45b5fd2

Please sign in to comment.