File tree Expand file tree Collapse file tree 6 files changed +24
-6
lines changed
examples/docker/src/aem/default/etc
app_classic/aem/default/etc
app_cloud/aem/default/etc Expand file tree Collapse file tree 6 files changed +24
-6
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ snapshot:
5050 version_template : " {{ incpatch .Version }}-next"
5151
5252changelog :
53+ use : github
5354 sort : asc
5455 filters :
5556 exclude :
Original file line number Diff line number Diff line change @@ -277,6 +277,11 @@ vendor:
277277 download_url : " https://repo1.maven.org/maven2/org/apache/jackrabbit/oak-run/1.72.0/oak-run-1.72.0.jar"
278278 store_path : " crx-quickstart/repository/segmentstore"
279279
280+ # Pre-installed local JAR file
281+ # a) keep it empty to download it automatically
282+ # b) set it to an absolute path to skip downloading
283+ jar_file : " "
284+
280285# Content clean options
281286content :
282287 clean :
Original file line number Diff line number Diff line change @@ -39,9 +39,7 @@ func (or OakRun) Dir() string {
3939
4040func (or OakRun ) lock () osx.Lock [OakRunLock ] {
4141 return osx .NewLock (or .Dir ()+ "/lock/create.yml" , func () (OakRunLock , error ) {
42- return OakRunLock {
43- DownloadURL : or .DownloadURL ,
44- }, nil
42+ return OakRunLock {DownloadURL : or .DownloadURL }, nil
4543 })
4644}
4745
@@ -53,13 +51,12 @@ func (or OakRun) PrepareWithChanged() (bool, error) {
5351 }
5452
5553 if or .JarFile != "" {
56- // No preparation needed if using a local JAR
57- log .Infof ("using Oak Run JAR from local file '%s'" , or .JarFile )
54+ log .Debugf ("using OakRun from JAR file '%s'" , or .JarFile )
5855 return false , nil
5956 }
6057
6158 if check .UpToDate {
62- log .Debugf ("existing OakRun '%s is up-to-date" , or .DownloadURL )
59+ log .Debugf ("existing OakRun '%s' is up-to-date" , or .DownloadURL )
6360 return false , nil
6461 }
6562 log .Infof ("preparing new OakRun '%s'" , or .DownloadURL )
Original file line number Diff line number Diff line change @@ -279,6 +279,11 @@ vendor:
279279 download_url : " https://repo1.maven.org/maven2/org/apache/jackrabbit/oak-run/1.72.0/oak-run-1.72.0.jar"
280280 store_path : " crx-quickstart/repository/segmentstore"
281281
282+ # Pre-installed local JAR file
283+ # a) keep it empty to download it automatically
284+ # b) set it to an absolute path to skip downloading
285+ jar_file : " "
286+
282287# Content-related options
283288content :
284289 clean :
Original file line number Diff line number Diff line change @@ -279,6 +279,11 @@ vendor:
279279 download_url : " https://repo1.maven.org/maven2/org/apache/jackrabbit/oak-run/1.72.0/oak-run-1.72.0.jar"
280280 store_path : " crx-quickstart/repository/segmentstore"
281281
282+ # Pre-installed local JAR file
283+ # a) keep it empty to download it automatically
284+ # b) set it to an absolute path to skip downloading
285+ jar_file : " "
286+
282287# Content-related options
283288content :
284289 clean :
Original file line number Diff line number Diff line change @@ -274,6 +274,11 @@ vendor:
274274 download_url : " https://repo1.maven.org/maven2/org/apache/jackrabbit/oak-run/1.72.0/oak-run-1.72.0.jar"
275275 store_path : " crx-quickstart/repository/segmentstore"
276276
277+ # Pre-installed local JAR file
278+ # a) keep it empty to download it automatically
279+ # b) set it to an absolute path to skip downloading
280+ jar_file : " "
281+
277282# Content-related options
278283content :
279284 clean :
You can’t perform that action at this time.
0 commit comments