Fixed packages and classpaths.

Co-authored-by: sigonasr2 <sigonasr2@gmail.com>
main
sigonasr2, Sig, Sigo 3 years ago
parent 54b3272a02
commit 3d9b21923e
  1. 20
      .classpath
  2. 1
      .settings/org.eclipse.core.resources.prefs
  3. 2
      pom.xml
  4. 1
      src/sig/Panel.java
  5. 1
      src/sig/Triangle.java

@ -1,18 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" output="target/classes" path="src/main/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
<attributes>
<attribute name="maven.pomderived" value="true"/>
@ -31,13 +18,18 @@
<attribute name="m2e-apt" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/classes" path="src">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="target/generated-test-sources/test-annotations">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="ignore_optional_problems" value="true"/>
<attribute name="m2e-apt" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>

@ -1,4 +1,3 @@
eclipse.preferences.version=1
encoding//src/sig=UTF-8
encoding/<project>=UTF-8
encoding/src=UTF-8

@ -8,7 +8,7 @@
<artifactId>SigRenderer</artifactId>
<version>0</version>
<name>sig.SigRenderer</name>
<name>SigRenderer</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

@ -1,5 +1,4 @@
package sig;
import javax.swing.JPanel;
import java.awt.Graphics;

@ -1,5 +1,4 @@
package sig;
import javax.vecmath.Vector3d;
public class Triangle {

Loading…
Cancel
Save