File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ You can include the Maven dependency:
5656<dependency >
5757 <groupId >com.github.collinalpert</groupId >
5858 <artifactId >lambda2sql</artifactId >
59- <version >1.6.5 </version >
59+ <version >1.7 </version >
6060</dependency >
6161```
6262
Original file line number Diff line number Diff line change 66
77 <groupId >com.github.collinalpert</groupId >
88 <artifactId >lambda2sql</artifactId >
9- <version >1.6.5 </version >
9+ <version >1.7 </version >
1010 <packaging >jar</packaging >
1111
1212 <name >lambda2sql</name >
4949 </distributionManagement >
5050
5151 <properties >
52- <jdk .version>10</jdk .version>
53- <maven .compiler.source>10</maven .compiler.source>
54- <maven .compiler.target>10</maven .compiler.target>
52+ <java-version >10</java-version >
53+ <jdk .version>${java-version} </jdk .version>
54+ <maven .compiler.source>${java-version} </maven .compiler.source>
55+ <maven .compiler.target>${java-version} </maven .compiler.target>
5556 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
5657 </properties >
5758
7374
7475 <build >
7576 <plugins >
77+ <plugin >
78+ <groupId >org.apache.maven.plugins</groupId >
79+ <artifactId >maven-compiler-plugin</artifactId >
80+ <version >3.8.0</version >
81+ <configuration >
82+ <source >${java-version} </source >
83+ <target >${java-version} </target >
84+ </configuration >
85+ </plugin >
86+
7687 <plugin >
7788 <groupId >org.sonatype.plugins</groupId >
7889 <artifactId >nexus-staging-maven-plugin</artifactId >
Original file line number Diff line number Diff line change 1+ module com .github .collinalpert .lambda2sql {
2+ requires jaque ;
3+ exports com .github .collinalpert .lambda2sql .functions ;
4+ exports com .github .collinalpert .lambda2sql ;
5+ }
You can’t perform that action at this time.
0 commit comments