Skip to content

Commit fbf5e96

Browse files
# This is a combination of 7 commits.
# This is the 1st commit message: Delombok before docs # This is the commit message salesforce#2: Delombok before docs # This is the commit message salesforce#3: Delombok before docs # This is the commit message salesforce#4: Delombok before docs # This is the commit message salesforce#5: Delombok before docs # This is the commit message salesforce#6: Delombok before docs # This is the commit message salesforce#7: Revert "Delombok before docs" This reverts commit 2805626904dacdd026b8c8076343e8940167a1ed.
1 parent 3f4c04c commit fbf5e96

File tree

18 files changed

+298
-9
lines changed

18 files changed

+298
-9
lines changed

blob/blob-ali/pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -416,5 +416,26 @@
416416
</exclusions>
417417
</dependency>
418418
</dependencies>
419+
<build>
420+
<plugins>
421+
<plugin>
422+
<groupId>org.projectlombok</groupId>
423+
<artifactId>lombok-maven-plugin</artifactId>
424+
<executions>
425+
<execution>
426+
<phase>generate-sources</phase>
427+
<goals>
428+
<goal>delombok</goal>
429+
</goals>
430+
</execution>
431+
</executions>
432+
<configuration>
433+
<sourceDirectory>src/main/java</sourceDirectory>
434+
<outputDirectory>${project.build.directory}/generated-sources/delombok</outputDirectory>
435+
<addOutputDirectory>false</addOutputDirectory>
436+
</configuration>
437+
</plugin>
438+
</plugins>
439+
</build>
419440

420441
</project>

blob/blob-aws/pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -731,4 +731,25 @@
731731
</dependency>
732732

733733
</dependencies>
734+
<build>
735+
<plugins>
736+
<plugin>
737+
<groupId>org.projectlombok</groupId>
738+
<artifactId>lombok-maven-plugin</artifactId>
739+
<executions>
740+
<execution>
741+
<phase>generate-sources</phase>
742+
<goals>
743+
<goal>delombok</goal>
744+
</goals>
745+
</execution>
746+
</executions>
747+
<configuration>
748+
<sourceDirectory>src/main/java</sourceDirectory>
749+
<outputDirectory>${project.build.directory}/generated-sources/delombok</outputDirectory>
750+
<addOutputDirectory>false</addOutputDirectory>
751+
</configuration>
752+
</plugin>
753+
</plugins>
754+
</build>
734755
</project>

blob/blob-client/pom.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,23 @@
171171
</execution>
172172
</executions>
173173
</plugin>
174+
<plugin>
175+
<groupId>org.projectlombok</groupId>
176+
<artifactId>lombok-maven-plugin</artifactId>
177+
<executions>
178+
<execution>
179+
<phase>generate-sources</phase>
180+
<goals>
181+
<goal>delombok</goal>
182+
</goals>
183+
</execution>
184+
</executions>
185+
<configuration>
186+
<sourceDirectory>src/main/java</sourceDirectory>
187+
<outputDirectory>${project.build.directory}/generated-sources/delombok</outputDirectory>
188+
<addOutputDirectory>false</addOutputDirectory>
189+
</configuration>
190+
</plugin>
174191
</plugins>
175192
</build>
176193
</project>

blob/blob-client/src/main/java/com/salesforce/multicloudj/blob/driver/UploadRequest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ public class UploadRequest {
2424
*/
2525
private final long contentLength;
2626
/**
27-
* (Optional parameter) The map of metadataName->metadataValue to be associated with the blob
27+
* (Optional parameter) The map of metadataName to metadataValue to be associated with the blob
2828
*/
2929
private final Map<String, String> metadata;
3030
/**
31-
* (Optional parameter) The map of tagName->tagValue to be associated with the blob
31+
* (Optional parameter) The map of tagName to tagValue to be associated with the blob
3232
*/
3333
private final Map<String, String> tags;
3434
/**

blob/blob-gcp/pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -378,5 +378,26 @@
378378
</exclusions>
379379
</dependency>
380380
</dependencies>
381+
<build>
382+
<plugins>
383+
<plugin>
384+
<groupId>org.projectlombok</groupId>
385+
<artifactId>lombok-maven-plugin</artifactId>
386+
<executions>
387+
<execution>
388+
<phase>generate-sources</phase>
389+
<goals>
390+
<goal>delombok</goal>
391+
</goals>
392+
</execution>
393+
</executions>
394+
<configuration>
395+
<sourceDirectory>src/main/java</sourceDirectory>
396+
<outputDirectory>${project.build.directory}/generated-sources/delombok</outputDirectory>
397+
<addOutputDirectory>false</addOutputDirectory>
398+
</configuration>
399+
</plugin>
400+
</plugins>
401+
</build>
381402

382403
</project>

docstore/docstore-ali/pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -445,5 +445,26 @@
445445
</exclusions>
446446
</dependency>
447447
</dependencies>
448+
<build>
449+
<plugins>
450+
<plugin>
451+
<groupId>org.projectlombok</groupId>
452+
<artifactId>lombok-maven-plugin</artifactId>
453+
<executions>
454+
<execution>
455+
<phase>generate-sources</phase>
456+
<goals>
457+
<goal>delombok</goal>
458+
</goals>
459+
</execution>
460+
</executions>
461+
<configuration>
462+
<sourceDirectory>src/main/java</sourceDirectory>
463+
<outputDirectory>${project.build.directory}/generated-sources/delombok</outputDirectory>
464+
<addOutputDirectory>false</addOutputDirectory>
465+
</configuration>
466+
</plugin>
467+
</plugins>
468+
</build>
448469

449470
</project>

docstore/docstore-aws/pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -455,4 +455,25 @@
455455
</exclusions>
456456
</dependency>
457457
</dependencies>
458+
<build>
459+
<plugins>
460+
<plugin>
461+
<groupId>org.projectlombok</groupId>
462+
<artifactId>lombok-maven-plugin</artifactId>
463+
<executions>
464+
<execution>
465+
<phase>generate-sources</phase>
466+
<goals>
467+
<goal>delombok</goal>
468+
</goals>
469+
</execution>
470+
</executions>
471+
<configuration>
472+
<sourceDirectory>src/main/java</sourceDirectory>
473+
<outputDirectory>${project.build.directory}/generated-sources/delombok</outputDirectory>
474+
<addOutputDirectory>false</addOutputDirectory>
475+
</configuration>
476+
</plugin>
477+
</plugins>
478+
</build>
458479
</project>

docstore/docstore-client/pom.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,23 @@
369369
</execution>
370370
</executions>
371371
</plugin>
372+
<plugin>
373+
<groupId>org.projectlombok</groupId>
374+
<artifactId>lombok-maven-plugin</artifactId>
375+
<executions>
376+
<execution>
377+
<phase>generate-sources</phase>
378+
<goals>
379+
<goal>delombok</goal>
380+
</goals>
381+
</execution>
382+
</executions>
383+
<configuration>
384+
<sourceDirectory>src/main/java</sourceDirectory>
385+
<outputDirectory>${project.build.directory}/generated-sources/delombok</outputDirectory>
386+
<addOutputDirectory>false</addOutputDirectory>
387+
</configuration>
388+
</plugin>
372389
</plugins>
373390
</build>
374391
</project>

docstore/docstore-client/src/main/java/com/salesforce/multicloudj/docstore/client/Query.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,16 +78,16 @@ public class Query {
7878
*/
7979
private final List<Filter> filters = new ArrayList<>();
8080

81-
/**
81+
/**
8282
* Offset (also commonly referred to as `Skip`) sets the number of results to skip
83-
* before returning results. When offset <= 0, the driver implementation returns
83+
* before returning results. When offset is less than or equal to 0, the driver implementation returns
8484
* all possible results from the beginning.
8585
*/
8686
private int offset = 0;
8787

88-
/**
88+
/**
8989
* Limit sets the maximum number of results returned by running the query. When
90-
* limit <= 0, the driver implementation returns all possible results.
90+
* limit is less than or equal to 0, the driver implementation returns all possible results.
9191
*/
9292
private int limit = 0;
9393

docstore/docstore-gcp-firestore/pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -447,4 +447,25 @@
447447
</exclusions>
448448
</dependency>
449449
</dependencies>
450+
<build>
451+
<plugins>
452+
<plugin>
453+
<groupId>org.projectlombok</groupId>
454+
<artifactId>lombok-maven-plugin</artifactId>
455+
<executions>
456+
<execution>
457+
<phase>generate-sources</phase>
458+
<goals>
459+
<goal>delombok</goal>
460+
</goals>
461+
</execution>
462+
</executions>
463+
<configuration>
464+
<sourceDirectory>src/main/java</sourceDirectory>
465+
<outputDirectory>${project.build.directory}/generated-sources/delombok</outputDirectory>
466+
<addOutputDirectory>false</addOutputDirectory>
467+
</configuration>
468+
</plugin>
469+
</plugins>
470+
</build>
450471
</project>

0 commit comments

Comments
 (0)