Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Jessica Hawkwell
/
lang-toolkit
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
2
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 2e3eeb4f
authored
Jul 02, 2017
by
Jessica Hawkwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
starting works
1 parent
ce1e8374
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
89 additions
and
0 deletions
pom.xml
src/main/java/me/felinewtih/lang_toolkit/Installer.java
src/main/java/me/felinewtih/lang_toolkit/LangToolkit.java
src/site/site.xml
pom.xml
0 → 100644
View file @
2e3eeb4
This diff is collapsed.
Click to expand it.
src/main/java/me/felinewtih/lang_toolkit/Installer.java
0 → 100644
View file @
2e3eeb4
package
me
.
felinewtih
.
lang_toolkit
;
/**
*
* @author jlhawkwell
*/
public
class
Installer
{
Runtime
rt
;
public
Installer
(
Runtime
runtime
)
{
rt
=
runtime
;
}
public
boolean
downloadMaven
()
{
return
false
;
}
public
boolean
installMaven
()
{
return
false
;
}
}
src/main/java/me/felinewtih/lang_toolkit/LangToolkit.java
0 → 100644
View file @
2e3eeb4
package
me
.
felinewtih
.
lang_toolkit
;
import
java.io.File
;
/**
*
* @author jlhawkwell
*/
public
class
LangToolkit
{
public
static
void
main
(
String
[]
args
)
{
StringBuilder
sb
=
new
StringBuilder
(
System
.
getProperty
(
"user.home"
));
sb
.
append
(
File
.
separator
);
sb
.
append
(
".m2"
);
File
f
=
new
File
(
sb
.
toString
());
if
(
!
f
.
exists
()
)
{
Installer
in
=
new
Installer
(
Runtime
.
getRuntime
());
}
}
}
src/site/site.xml
0 → 100644
View file @
2e3eeb4
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns=
"http://maven.apache.org/DECORATION/1.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd"
>
<skin>
<groupId>
org.apache.maven.skins
</groupId>
<artifactId>
maven-fluido-skin
</artifactId>
<version>
1.6
</version>
</skin>
<custom>
<fluidoSkin>
<sideBarEnabled>
true
</sideBarEnabled>
<topBarEnabled>
true
</topBarEnabled>
<navBarStyle>
navbar-inverse
</navBarStyle>
<copyrightClass>
pull-right
</copyrightClass>
<breadcrumbDivider>
»
</breadcrumbDivider>
<sourceLineNumbersEnabled>
true
</sourceLineNumbersEnabled>
</fluidoSkin>
</custom>
<version
position=
"right"
/>
<publishDate
position=
"right"
format=
"yyyy-mm-dd'T'HH:mm:ssZ"
/>
<!-- poweredBy>
<logo name="VOCASystem.Net" href="https://dev.vocasystem.net/" alt="VOCASystem.Net"
img="http://static.vocasystem.net/vocasystem.net/images/vocasystem.net-black.png" />
</poweredBy -->
<body>
<breadcrumbs>
<item
name=
"${project.name} (${project.fulltag})"
href=
"${project.url}"
/>
</breadcrumbs>
<menu
name=
"Project Information"
ref=
"reports"
inherit=
"bottom"
/>
<menu
ref=
"modules"
inherit=
"bottom"
/>
</body>
</project>
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment