-
Notifications
You must be signed in to change notification settings - Fork 46
/
readme.txt
136 lines (102 loc) · 3.8 KB
/
readme.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
Readme
The newest versions of this project are published on http://docking-frames.org
To learn how the framework works:
- read the guides
- visit http://forum.byte-welt.net/forumdisplay.php?f=69 if you have any questions
- for non-technical support you can also contact me directly: benjamin_sigg@gmx.ch
Each directory represents an own project:
docking-frames-core: The basic project containing the core drag and drop mechanism. All other projects depend on this one.
docking-frames-common: Project for fast development of applications, a layer to hide the complexity of dockingFrame
docking-frames-ext-glass: An additional set of tabs for the EclipseTheme
docking-frames-tutorial: A set of small code snippets demonstrating aspects of the projects.
docking-frames-demo-app-ice: public interfaces of the demonstration framework
docking-frames-demo-app: demonstration framework
docking-frames-demo-help: a client of the demonstration-framework, shows JavaDoc.
docking-frames-demo-notes: a client of the demonstration-framework, shows some notes
docking-frames-demo-chess: a client of the demonstration-framework, creates a new type of DockStation
docking-frames-demo-paint: a client using the common project
docking-frames-demo-size-and-color: a client using the common project
docking-frames-demo-layouts: a client allowing to play a bit with persistent storage of layouts.
The projects have these dependencies:
docking-frames-core:
- no dependencies
docking-frames-common:
+ docking-frames-core
docking-frames-ext-glass:
+ docking-frames-core
+ docking-frames-common (optional during runtime)
docking-frames-tutorial:
+ docking-frames-core
+ docking-frames-common
docking-frames-demo-app-ice
+ docking-frames-common
docking-frames-demo-app
+ docking-frames-demo-app-ice
+ docking-frames-core
+ docking-frames-common
+ docking-frames-demo-help
+ docking-frames-demo-notes
+ docking-frames-demo-chess
+ docking-frames-demo-paint
+ docking-frames-demo-size-and-color
+ docking-frames-demo-layouts
docking-frames-demo-help
+ docking-frames-demo-app-ice
+ docking-frames-core
+ docking-frames-common
+ lib/tools.jar, can be found in the JDK
docking-frames-demo-notes
+ docking-frames-demo-app-ice
+ docking-frames-core
docking-frames-demo-chess
+ docking-frames-demo-app-ice
+ docking-frames-core
docking-frames-demo-paint
+ docking-frames-demo-app-ice
+ docking-frames-core
+ docking-frames-common
docking-frames-demo-size-and-color
+ docking-frames-demo-app-ice
+ docking-frames-core
+ docking-frames-common
docking-frames-demo-layouts
+ docking-frames-demo-app-ice
+ docking-frames-core
+ docking-frames-common
Maven Snapshot Repository
you can get current project snapshot here:
https://oss.sonatype.org/content/repositories/snapshots/org/dockingframes/
or add to your pom.xml
<repositories>
<repository>
<id>sonatype-oss-snapshots</id>
<name>Sonatype OSS Maven Repository for Staging Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.dockingframes</groupId>
<artifactId>docking-frames-common</artifactId>
<version>1.1.2-SNAPSHOT</version>
</dependency>
</dependencies>
be sure to use latest <version>-SNAPSHOT
Maven Release Repository
you can get latest release from maven central:
http://search.maven.org/#artifactdetails|org.dockingframes|docking-frames-common|1.1.1|jar
just add to your pom.xml
<dependencies>
<dependency>
<groupId>org.dockingframes</groupId>
<artifactId>docking-frames-common</artifactId>
<version>1.1.1</version>
</dependency>
</dependencies>
be sure to use latest <version>