jl95terceira-pytools-env-java 0.1.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import os.path
|
|
2
|
+
|
|
3
|
+
from jl95terceira.pytools.envlib import vars,var
|
|
4
|
+
|
|
5
|
+
JDK_HOMES:vars.Var[dict[str,str]] \
|
|
6
|
+
= var(name ='jdk.homes',
|
|
7
|
+
description='a map (dict) of Java homes by version (as a string)',
|
|
8
|
+
default =dict())
|
|
9
|
+
MAVEN_HOME = var(name ='maven.home',
|
|
10
|
+
description='the home of Apache Maven')
|
|
11
|
+
MAVEN = var(name ='maven',
|
|
12
|
+
description='the path / alias to Apache Maven executable',
|
|
13
|
+
default = os.path.join(MAVEN_HOME.get(), 'bin', 'mvn.exe') if MAVEN_HOME.check() else 'mvn')
|
|
14
|
+
ANT_HOME = var(name ='ant.home',
|
|
15
|
+
description='the home of Apache Ant')
|
|
16
|
+
ANT = var(name ='ant',
|
|
17
|
+
description='the path / alias to Apache Ant executable',
|
|
18
|
+
default = os.path.join(ANT_HOME.get(), 'bin', 'mvn.exe') if ANT_HOME.check() else 'ant')
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: jl95terceira_pytools_env_java
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: Environment variables collection - Java
|
|
5
|
+
Project-URL: Homepage, https://github.com/jl95terceira/project-D-B
|
|
6
|
+
Project-URL: Issues, https://github.com/jl95terceira/project-D-B/issues
|
|
7
|
+
Author-email: Joao Luis Ornelas da Silva <jl95terceira@gmail.com>
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Requires-Python: >=3.12
|
|
12
|
+
Requires-Dist: jl95terceira-pytools-env==0.1.1
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
Environment variables collection - Java
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
jl95terceira/pytools/envlib/vars/java/__init__.py,sha256=WPAkG8qrWZQQyujyX1kg-1ng6pdSAgxE68aO0B9D5QQ,1008
|
|
2
|
+
jl95terceira_pytools_env_java-0.1.1.dist-info/METADATA,sha256=XZVI7O_0z45mqDKt2AKGgCH61necZqXtI6J3tPVjY3Y,625
|
|
3
|
+
jl95terceira_pytools_env_java-0.1.1.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
|
4
|
+
jl95terceira_pytools_env_java-0.1.1.dist-info/RECORD,,
|