forked from Vhati/ftl-profile-editor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreadme_developers.txt
73 lines (54 loc) · 1.92 KB
/
readme_developers.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
The build process for this project is automated by Maven.
http://maven.apache.org/
http://docs.codehaus.org/display/MAVENUSER/Getting+Started+with+Maven
If your build environment is limited to Java 1.6,
use Maven 3.2.5 (the last to support that compiler).
Current Java compilers should be able to build backward-compatible jars.
To build, run "mvn clean" and "mvn package" in this folder.
(note from reseto: version 29 was built with IntelliJ Idea v2021.3.1 and built-in maven 3.8.1 and Amazon Corretto 17.0.1 JDK)
"img/"
Screenshots.
"skel_common/"
Files to include in distribution archives.
"skel_win/" and "skel_unix/"
System-specific files to include in distribution archives.
"skel_exe/"
Materials to create modman.exe (not part of Maven).
- Get Launch4j: http://launch4j.sourceforge.net/index.html
- Drag "launch4j.xml" onto "launch4jc.exe".
- "modman.exe" will appear alongside the xml.
- Drag modman.exe into "skel_win/".
- Run "mvn clear" and "mvn package".
"latest-version.txt"
The latest release version number, downloaded on startup by clients.
"release-notes.txt"
Info about the latest release, downloaded on demand by clients.
This project depends on the following libraries.
- Apache HttpComponents
https://hc.apache.org/
(For JavaDocs, click HttpCore or HttpClient, then again under "Project reports".)
- Java Native Access
https://github.com/twall/jna
(JavaDocs are linked from readme.md)
- JDOM 2.x
http://www.jdom.org/
(For JavaDocs, look left.)
- Logback
https://logback.qos.ch/
(For JavaDocs, look left.)
- SLF4J
https://www.slf4j.org/
(For JavaDocs, look left.)
Here's a batch file that builds when double-clicked (edit the vars).
- - - -
@ECHO OFF
SETLOCAL
SET JAVA_HOME=D:\Apps\j2sdk1.6.0_45
SET M2_HOME=D:\Apps\Maven
SET M2=%M2_HOME%\bin
SET PATH=%M2%;%PATH%
CD /D "%~dp0"
CALL mvn clean && CALL mvn package
PAUSE
ENDLOCAL & EXIT /B
- - - -