Commit 2e3eeb4f by Jessica Hawkwell

starting works

1 parent ce1e8374
This diff is collapsed. Click to expand it.
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;
}
}
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());
}
}
}
<?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>&raquo;</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>
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!