CacheWriterAdapter.class #615
-
Hi, I downloaded https://repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.9.2/caffeine-2.9.2.jar and I can see Just want to know how https://repo1.maven.org/maven2/com/github/ben-manes/caffeine/caffeine/2.9.2/caffeine-2.9.2.jar was built, from where I can find the jar corresponding to v2.9.2.zip source code ? Regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 12 replies
-
The publication is performed by a github action in response to creating the release tag. If you run If you run |
Beta Was this translation helpful? Give feedback.
The publication is performed by a github action in response to creating the release tag.
If you run
gradlew compileJava
then it will appear undercaffeine/build/classes/java/main/com/github/benmanes/caffeine/cache/Caffeine$CacheWriterAdapter.class
.If you run
gradlew jar
then it will be included inunzip -l caffeine/build/libs/caffeine-2.9.2-SNAPSHOT.jar
.