Skip to content

Commit

Permalink
updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
raydac committed Dec 14, 2024
1 parent b46a5e6 commit 7614c84
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
5 changes: 3 additions & 2 deletions mind-map/idea-mindmap/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ intellij {

def jsoupVersion = project.getProperty('jsoup_version')
def jsonVersion = project.getProperty('json_version')
def metaVersion = project.getProperty('meta_version')

sourceCompatibility = 1.8
targetCompatibility = 1.8
Expand All @@ -28,8 +29,8 @@ defaultTasks 'clean', 'build'

dependencies {
implementation('com.igormaznitsa:commons-version:1.0.0')
implementation('com.igormaznitsa:meta-annotations:1.1.3')
implementation('com.igormaznitsa:meta-utils:1.1.3')
implementation('com.igormaznitsa:meta-annotations:' + metaVersion)
implementation('com.igormaznitsa:meta-utils:' + metaVersion)

implementation('org.json:json:' + jsonVersion)
implementation('org.jsoup:jsoup:' + jsoupVersion)
Expand Down
2 changes: 2 additions & 0 deletions mind-map/idea-mindmap/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<meta.version>1.1.3</meta.version>
<gradle.executable>gradle8</gradle.executable>
</properties>

Expand Down Expand Up @@ -177,6 +178,7 @@
<argument>build</argument>
<!-- <argument>-i</argument>-->
<argument>-S</argument>
<argument>-Pmeta_version=${com.igormaznitsa:meta-annotations:jar.version}</argument>
<argument>-Pjsoup_version=${org.jsoup:jsoup:jar.version}</argument>
<argument>-Pjson_version=${org.json:json:jar.version}</argument>
<argument>-Pmaven_project_version=${project.version}</argument>
Expand Down
1 change: 1 addition & 0 deletions mind-map/nb-mind-map/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

<properties>
<nb.platform>RELEASE90</nb.platform>
<meta.version>1.1.3</meta.version>
</properties>

<profiles>
Expand Down

0 comments on commit 7614c84

Please sign in to comment.