Skip to content
Snippets Groups Projects
Commit 25ebe286 authored by Patient NTUMBA's avatar Patient NTUMBA
Browse files

Remove adding logger

parent 8bccdb1f
No related branches found
No related tags found
No related merge requests found
......@@ -18,14 +18,14 @@ public class Generator {
RunTimeCompiler compiler = new RunTimeCompiler(sourceFilesPath,Constants.generatedCodePath,classesOptions);
compiler.compile();
File sourceDir = new File(sourceFilesPath);
/*for(File f: sourceDir.listFiles()){
for(File f: sourceDir.listFiles()){
if(f.getName().endsWith("java")){
f.delete();
}
}*/
}
PathResolver.setClassPath(Constants.generatedCodePath);
}
......
......@@ -18,7 +18,6 @@ import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.jboss.shrinkwrap.api.spec.JavaArchive;
import org.jboss.shrinkwrap.api.spec.WebArchive;
import org.jboss.shrinkwrap.impl.base.exporter.zip.ZipExporterImpl;
import org.jboss.shrinkwrap.resolver.api.maven.Maven;
import org.jboss.shrinkwrap.resolver.api.maven.embedded.BuiltProject;
import org.jboss.shrinkwrap.resolver.api.maven.embedded.EmbeddedMaven;
......
......@@ -129,9 +129,7 @@ public class GidlToWSDL {
DOMSource source = new DOMSource(wsdlDocument);
StreamResult result = new StreamResult(new File(Constants.wsdlDestination + File.separator + Constants.wsdlName+".wsdl"));
transformer.transform(source, result);
// Output to console for testing
StreamResult consoleResult = new StreamResult(System.out);
transformer.transform(source, consoleResult);
} catch (TransformerException e) {
// TODO Auto-generated catch block
......
......@@ -220,7 +220,6 @@ public class BcSoapGenerator extends BcSubcomponentGenerator {
String directClassTmp = codeModel_directClass;
codeModel_directClass = operation.getPostDatas().get(postDataSize-1).getClassName();
System.out.println(" codeModel_directClass "+codeModel_directClass);
if(codeModel_directClass.equals("List<"+directClassTmp+">")){
JClass importedClass= codeModel.ref(java.util.List.class)
......
......@@ -27,5 +27,10 @@
<artifactId>gmdl-utils</artifactId>
<version>2.1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>eu.chorevolution.vsb</groupId>
<artifactId>logger</artifactId>
<version>2.1.0-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
......@@ -16,6 +16,8 @@ import javax.tools.StandardLocation;
import javax.tools.ToolProvider;
import eu.chorevolution.vsb.gmdl.utils.PathResolver;
import eu.chorevolution.vsb.logger.GLog;
import eu.chorevolution.vsb.logger.Logger;
import javax.tools.JavaCompiler.CompilationTask;
......@@ -24,6 +26,7 @@ public class RunTimeCompiler{
private String sourceFilesPath = null;
private String outputPath = null;
private Class[] classesOptions = null;
private Logger logger = GLog.initLogger();
public RunTimeCompiler(String sourceFilesPath , String outputPath, Class[] classesOptions){
......@@ -57,15 +60,14 @@ public class RunTimeCompiler{
StandardJavaFileManager fileManager = compiler.getStandardFileManager(null, Locale.getDefault(), null);
// String strSourceDir = Constants.generatedCodePath + File.separator+ Constants.target_namespace_path;
File sourceDir = new File(sourceFilesPath);
List<JavaFileObject> javaObjects = scanRecursivelyForJavaFiles(sourceDir, fileManager);
if (javaObjects.size() == 0) {
System.out.println("There are no source files to compile in " + sourceDir.getAbsolutePath());
logger.e(this.getClass().getName(), "There are no source files to compile in " + sourceDir.getAbsolutePath());
}
......@@ -74,21 +76,11 @@ public class RunTimeCompiler{
javaObjects);
if (!compilerTask.call()){
System.out.println("Could not compile project");
}
try {
for (JavaFileObject jfo : fileManager.list(StandardLocation.CLASS_OUTPUT, "",
Collections.singleton(JavaFileObject.Kind.CLASS), true)) {
System.out.println(jfo.getName());
}
} catch (IOException e){
// TODO Auto-generated catch block
e.printStackTrace();
logger.e(this.getClass().getName(), "Could not compile project");
}
}
private static List<JavaFileObject> scanRecursivelyForJavaFiles(File dir, StandardJavaFileManager fileManager) {
......
......@@ -255,7 +255,6 @@ public class VsbManager {
war_pomxl = new File(".").getAbsolutePath() + File.separator + "src"+File.separator+"main"+File.separator+"resources"+File.separator+"pom-of-war.xml";
}
System.out.println(" war_pomxl "+war_pomxl);
warGenerator.addDependencyFiles(war_pomxl);
......@@ -538,7 +537,6 @@ public class VsbManager {
break;
}
System.out.println(" gmServiceRepresentation.getProtocol() "+gmServiceRepresentation.getProtocol());
switch(gmServiceRepresentation.getProtocol()){
case REST:
for(int i=1; i<=gmServiceRepresentation.getInterfaces().size(); i++)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment