Skip to content
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
4 changes: 2 additions & 2 deletions .factorypath
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<factorypath>
<factorypathentry kind="VARJAR" id="M2_REPO/org/projectlombok/lombok/1.18.44/lombok-1.18.44.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/hibernate/orm/hibernate-processor/7.2.12.Final/hibernate-processor-7.2.12.Final.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/hibernate/orm/hibernate-core/7.2.12.Final/hibernate-core-7.2.12.Final.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/hibernate/orm/hibernate-processor/7.2.19.Final/hibernate-processor-7.2.19.Final.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/hibernate/orm/hibernate-core/7.2.19.Final/hibernate-core-7.2.19.Final.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/jakarta/persistence/jakarta.persistence-api/3.2.0/jakarta.persistence-api-3.2.0.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/jakarta/transaction/jakarta.transaction-api/2.0.1/jakarta.transaction-api-2.0.1.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/classmate/1.7.1/classmate-1.7.1.jar" enabled="true" runInBatchMode="false"/>
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,14 +125,14 @@ includes a runnable example you can follow.
<dependency>
<groupId>com.rizzoweb</groupId>
<artifactId>spring-data-expresspecs</artifactId>
<version>0.1</version>
<version>0.2.0</version>
</dependency>
```

**Gradle:**

```groovy
implementation 'com.rizzoweb:spring-data-expresspecs:0.1'
implementation 'com.rizzoweb:spring-data-expresspecs:0.2.0'
```

### Your JPA Repository
Expand Down
4 changes: 2 additions & 2 deletions docs/usage-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ This guide covers setup, compatibility, typing options, factory usage, edge case
<dependency>
<groupId>com.rizzoweb</groupId>
<artifactId>spring-data-expresspecs</artifactId>
<version>0.1</version>
<version>0.2.0</version>
</dependency>
```

**Gradle:**

```groovy
implementation 'com.rizzoweb:spring-data-expresspecs:0.1'
implementation 'com.rizzoweb:spring-data-expresspecs:0.2.0'
```

Snapshot builds are available from the Maven Central snapshot repository:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.rizzoweb</groupId>
<artifactId>spring-data-expresspecs</artifactId>
<version>0.2-SNAPSHOT</version>
<version>0.2.0</version>

<name>Spring Data Expresspecs</name>
<description>Composable, type-safe factory methods for building Spring Data JPA Specification objects, eliminating CriteriaBuilder boilerplate with automatic join handling and null-safe chaining.</description>
Expand Down
Loading