Merge origin/master
This commit is contained in:
@@ -10,9 +10,9 @@
|
||||
<goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
|
||||
</goals>
|
||||
<properties>
|
||||
<exec.args>-classpath %classpath ch.psi.pshell.ui.App -b -l -dlaf -p=ch.psi.plugin.MainPanel</exec.args>
|
||||
<exec.args>-classpath %classpath ch.psi.pshell.ui.App -b -l -nlaf -p=ch.psi.mxsc.MainPanel</exec.args>
|
||||
<exec.executable>java</exec.executable>
|
||||
<exec.workingdir>../../pshell</exec.workingdir>
|
||||
<exec.workingdir>../../config/home</exec.workingdir>
|
||||
|
||||
</properties>
|
||||
</action>
|
||||
@@ -26,10 +26,10 @@
|
||||
<goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
|
||||
</goals>
|
||||
<properties>
|
||||
<exec.args>-Xdebug -Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address} -classpath %classpath ch.psi.pshell.ui.App -b -l -dlaf -p=ch.psi.plugin.MainPanel</exec.args>
|
||||
<exec.args>-Xdebug -Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address} -classpath %classpath ch.psi.pshell.ui.App -b -l -nlaf -p=ch.psi.mxsc.MainPanel</exec.args>
|
||||
<exec.executable>java</exec.executable>
|
||||
<jpda.listen>true</jpda.listen>
|
||||
<exec.workingdir>../../pshell</exec.workingdir>
|
||||
<exec.workingdir>../../config/home</exec.workingdir>
|
||||
|
||||
</properties>
|
||||
</action>
|
||||
@@ -43,9 +43,9 @@
|
||||
<goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
|
||||
</goals>
|
||||
<properties>
|
||||
<exec.args>-classpath %classpath ch.psi.pshell.ui.App -b -l -dlaf -p=ch.psi.plugin.MainPanel</exec.args>
|
||||
<exec.args>-classpath %classpath ch.psi.pshell.ui.App -b -l -nlaf -p=ch.psi.mxsc.MainPanel</exec.args>
|
||||
<exec.executable>java</exec.executable>
|
||||
<exec.workingdir>../../pshell</exec.workingdir>
|
||||
<exec.workingdir>../../config/home</exec.workingdir>
|
||||
|
||||
</properties>
|
||||
</action>
|
||||
|
||||
9
pom.xml
9
pom.xml
@@ -23,7 +23,12 @@
|
||||
<groupId>ch.psi</groupId>
|
||||
<artifactId>jcae</artifactId>
|
||||
<version>2.9.5</version>
|
||||
</dependency>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>ch.psi</groupId>
|
||||
<artifactId>bsread</artifactId>
|
||||
<version>3.4.4</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
@@ -60,7 +65,7 @@
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<version>2.3.1</version>
|
||||
<configuration>
|
||||
<outputDirectory>../pshell/home/plugins</outputDirectory>
|
||||
<outputDirectory>../../config/home/plugins</outputDirectory>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
|
||||
@@ -60,7 +60,7 @@ public class BasePlatePanel extends DevicePanel {
|
||||
|
||||
Mode mode = Mode.horizontal;
|
||||
|
||||
enum Mode {
|
||||
public enum Mode {
|
||||
single,
|
||||
horizontal,
|
||||
vertical,
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
package ch.psi.mxsc;
|
||||
|
||||
import ch.psi.mxsc.BasePlatePanel;
|
||||
import ch.psi.mxsc.Controller;
|
||||
import ch.psi.pshell.device.Device;
|
||||
import ch.psi.pshell.ui.Panel;
|
||||
import ch.psi.utils.swing.SwingUtils;
|
||||
@@ -12,7 +14,7 @@ import java.awt.Component;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
public class MainPanelTest extends Panel {
|
||||
class MainPanelTest extends Panel {
|
||||
/** Creates new form Panel */
|
||||
|
||||
public MainPanelTest() {
|
||||
|
||||
Reference in New Issue
Block a user