Skip to content

Convert project to Maven #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/doc/
/EasyModbus/
/nbproject/
/manifest.mf
target
*.iml
.idea
8 changes: 4 additions & 4 deletions EasyModbus/EasyModbus/src/ModbusRTU/ModbusRTU.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
* Creative Commons license: Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)
*You are free to:
*
*Share copy and redistribute the material in any medium or format
*Share - copy and redistribute the material in any medium or format
*The licensor cannot revoke these freedoms as long as you follow the license terms.
*
*Under the following terms:
*
*Attribution You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
*NonCommercial You may not use the material for commercial purposes.
*NoDerivatives If you remix, transform, or build upon the material, you may not distribute the modified material.
*Attribution - You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
*NonCommercial - You may not use the material for commercial purposes.
*NoDerivatives - If you remix, transform, or build upon the material, you may not distribute the modified material.
*/
package ModbusRTU;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
* Creative Commons license: Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)
*You are free to:
*
*Share copy and redistribute the material in any medium or format
*Share - copy and redistribute the material in any medium or format
*The licensor cannot revoke these freedoms as long as you follow the license terms.
*
*Under the following terms:
*
*Attribution You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
*NonCommercial You may not use the material for commercial purposes.
*NoDerivatives If you remix, transform, or build upon the material, you may not distribute the modified material.
*Attribution - You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
*NonCommercial - You may not use the material for commercial purposes.
*NoDerivatives - If you remix, transform, or build upon the material, you may not distribute the modified material.
*/
package de.re.easymodbus.modbusclient;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
* Creative Commons license: Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)
* You are free to:
*
*Share copy and redistribute the material in any medium or format
*Share - copy and redistribute the material in any medium or format
*for any purpose, even commercially.
*The licensor cannot revoke these freedoms as long as you follow the license terms.
*Under the following terms:
*
*Attribution You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
*NoDerivatives If you remix, transform, or build upon the material, you may not distribute the modified material.
*No additional restrictions You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
*Attribution - You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
*NoDerivatives - If you remix, transform, or build upon the material, you may not distribute the modified material.
*No additional restrictions - You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
*/
package de.re.easymodbus.modbusclient;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
* Creative Commons license: Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)
* You are free to:
*
*Share copy and redistribute the material in any medium or format
*Share - copy and redistribute the material in any medium or format
*for any purpose, even commercially.
*The licensor cannot revoke these freedoms as long as you follow the license terms.
*Under the following terms:
*
*Attribution You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
*NoDerivatives If you remix, transform, or build upon the material, you may not distribute the modified material.
*No additional restrictions You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
*Attribution - You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
*NoDerivatives - If you remix, transform, or build upon the material, you may not distribute the modified material.
*No additional restrictions - You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
*/
package de.re.easymodbus.modbusclient;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
* Creative Commons license: Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)
*You are free to:
*
*Share copy and redistribute the material in any medium or format
*Share - copy and redistribute the material in any medium or format
*The licensor cannot revoke these freedoms as long as you follow the license terms.
*
*Under the following terms:
*
*Attribution You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
*NonCommercial You may not use the material for commercial purposes.
*NoDerivatives If you remix, transform, or build upon the material, you may not distribute the modified material.
*Attribution - You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
*NonCommercial - You may not use the material for commercial purposes.
*NoDerivatives - If you remix, transform, or build upon the material, you may not distribute the modified material.
*/
package de.re.easymodbus.modbusclient.gui;

Expand All @@ -28,7 +28,7 @@
import java.awt.event.ItemEvent;
/**
*
* @author Stefan Ro�mann
* @author Stefan Roßmann
*/
@SuppressWarnings("serial")
public class EasyModbusTCPClientExampleGUI extends javax.swing.JFrame
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
* Creative Commons license: Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)
*You are free to:
*
*Share copy and redistribute the material in any medium or format
*Share - copy and redistribute the material in any medium or format
*The licensor cannot revoke these freedoms as long as you follow the license terms.
*
*Under the following terms:
*
*Attribution You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
*NonCommercial You may not use the material for commercial purposes.
*NoDerivatives If you remix, transform, or build upon the material, you may not distribute the modified material.
*Attribution - You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
*NonCommercial - You may not use the material for commercial purposes.
*NoDerivatives - If you remix, transform, or build upon the material, you may not distribute the modified material.
*/
package de.re.easymodbus.modbusclient.gui;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
* Creative Commons license: Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)
*You are free to:
*
*Share copy and redistribute the material in any medium or format
*Share - copy and redistribute the material in any medium or format
*The licensor cannot revoke these freedoms as long as you follow the license terms.
*
*Under the following terms:
*
*Attribution You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
*NonCommercial You may not use the material for commercial purposes.
*NoDerivatives If you remix, transform, or build upon the material, you may not distribute the modified material.
*Attribution - You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
*NonCommercial - You may not use the material for commercial purposes.
*NoDerivatives - If you remix, transform, or build upon the material, you may not distribute the modified material.
*/
package de.re.easymodbus.modbusclient.gui;

Expand All @@ -26,7 +26,7 @@
import java.awt.event.ItemEvent;
/**
*
* @author Stefan Ro�mann
* @author Stefan Roßmann
*/
@SuppressWarnings("serial")
public class EasyModbusTcpClient extends javax.swing.JFrame
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
* Creative Commons license: Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)
* You are free to:
*
*Share copy and redistribute the material in any medium or format
*Share - copy and redistribute the material in any medium or format
*for any purpose, even commercially.
*The licensor cannot revoke these freedoms as long as you follow the license terms.
*Under the following terms:
*
*Attribution You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
*NoDerivatives If you remix, transform, or build upon the material, you may not distribute the modified material.
*No additional restrictions You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
*Attribution - You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
*NoDerivatives - If you remix, transform, or build upon the material, you may not distribute the modified material.
*No additional restrictions - You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
*/
package de.re.easymodbus.server;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
* Creative Commons license: Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)
* You are free to:
*
*Share copy and redistribute the material in any medium or format
*Share - copy and redistribute the material in any medium or format
*for any purpose, even commercially.
*The licensor cannot revoke these freedoms as long as you follow the license terms.
*Under the following terms:
*
*Attribution You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
*NoDerivatives If you remix, transform, or build upon the material, you may not distribute the modified material.
*No additional restrictions You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
*Attribution - You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
*NoDerivatives - If you remix, transform, or build upon the material, you may not distribute the modified material.
*No additional restrictions - You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
*/
package de.re.easymodbus.server;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
* Creative Commons license: Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)
* You are free to:
*
*Share copy and redistribute the material in any medium or format
*Share - copy and redistribute the material in any medium or format
*for any purpose, even commercially.
*The licensor cannot revoke these freedoms as long as you follow the license terms.
*Under the following terms:
*
*Attribution You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
*NoDerivatives If you remix, transform, or build upon the material, you may not distribute the modified material.
*No additional restrictions You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
*Attribution - You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
*NoDerivatives - If you remix, transform, or build upon the material, you may not distribute the modified material.
*No additional restrictions - You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
*/
package de.re.easymodbus.server;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
* Creative Commons license: Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)
* You are free to:
*
*Share copy and redistribute the material in any medium or format
*Share - copy and redistribute the material in any medium or format
*for any purpose, even commercially.
*The licensor cannot revoke these freedoms as long as you follow the license terms.
*Under the following terms:
*
*Attribution You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
*NoDerivatives If you remix, transform, or build upon the material, you may not distribute the modified material.
*No additional restrictions You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
*Attribution - You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
*NoDerivatives - If you remix, transform, or build upon the material, you may not distribute the modified material.
*No additional restrictions - You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
*/
package de.re.easymodbus.server;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
* Creative Commons license: Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)
* You are free to:
*
*Share copy and redistribute the material in any medium or format
*Share - copy and redistribute the material in any medium or format
*for any purpose, even commercially.
*The licensor cannot revoke these freedoms as long as you follow the license terms.
*Under the following terms:
*
*Attribution You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
*NoDerivatives If you remix, transform, or build upon the material, you may not distribute the modified material.
*No additional restrictions You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
*Attribution - You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
*NoDerivatives - If you remix, transform, or build upon the material, you may not distribute the modified material.
*No additional restrictions - You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
*/
package de.re.easymodbus.server;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
* Creative Commons license: Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)
* You are free to:
*
*Share copy and redistribute the material in any medium or format
*Share - copy and redistribute the material in any medium or format
*for any purpose, even commercially.
*The licensor cannot revoke these freedoms as long as you follow the license terms.
*Under the following terms:
*
*Attribution You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
*NoDerivatives If you remix, transform, or build upon the material, you may not distribute the modified material.
*No additional restrictions You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
*Attribution - You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
*NoDerivatives - If you remix, transform, or build upon the material, you may not distribute the modified material.
*No additional restrictions - You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
*/
package de.re.easymodbus.server;

Expand Down
Loading