assaf-buildr 1.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +887 -0
- data/DISCLAIMER +7 -0
- data/LICENSE +176 -0
- data/NOTICE +26 -0
- data/README.rdoc +146 -0
- data/Rakefile +62 -0
- data/_buildr +38 -0
- data/addon/buildr/antlr.rb +65 -0
- data/addon/buildr/cobertura.rb +236 -0
- data/addon/buildr/emma.rb +238 -0
- data/addon/buildr/hibernate.rb +142 -0
- data/addon/buildr/javacc.rb +85 -0
- data/addon/buildr/jdepend.rb +60 -0
- data/addon/buildr/jetty.rb +248 -0
- data/addon/buildr/jibx.rb +86 -0
- data/addon/buildr/nailgun.rb +817 -0
- data/addon/buildr/openjpa.rb +90 -0
- data/addon/buildr/org/apache/buildr/BuildrNail$Main.class +0 -0
- data/addon/buildr/org/apache/buildr/BuildrNail.class +0 -0
- data/addon/buildr/org/apache/buildr/BuildrNail.java +41 -0
- data/addon/buildr/org/apache/buildr/JettyWrapper$1.class +0 -0
- data/addon/buildr/org/apache/buildr/JettyWrapper$BuildrHandler.class +0 -0
- data/addon/buildr/org/apache/buildr/JettyWrapper.class +0 -0
- data/addon/buildr/org/apache/buildr/JettyWrapper.java +144 -0
- data/addon/buildr/xmlbeans.rb +93 -0
- data/bin/buildr +28 -0
- data/buildr.buildfile +53 -0
- data/buildr.gemspec +58 -0
- data/doc/css/default.css +228 -0
- data/doc/css/print.css +100 -0
- data/doc/css/syntax.css +52 -0
- data/doc/images/apache-incubator-logo.png +0 -0
- data/doc/images/buildr-hires.png +0 -0
- data/doc/images/buildr.png +0 -0
- data/doc/images/favicon.png +0 -0
- data/doc/images/growl-icon.tiff +0 -0
- data/doc/images/note.png +0 -0
- data/doc/images/project-structure.png +0 -0
- data/doc/images/tip.png +0 -0
- data/doc/images/zbuildr.tif +0 -0
- data/doc/pages/artifacts.textile +207 -0
- data/doc/pages/building.textile +240 -0
- data/doc/pages/contributing.textile +208 -0
- data/doc/pages/download.textile +62 -0
- data/doc/pages/extending.textile +175 -0
- data/doc/pages/getting_started.textile +273 -0
- data/doc/pages/index.textile +42 -0
- data/doc/pages/languages.textile +407 -0
- data/doc/pages/mailing_lists.textile +17 -0
- data/doc/pages/more_stuff.textile +286 -0
- data/doc/pages/packaging.textile +427 -0
- data/doc/pages/projects.textile +274 -0
- data/doc/pages/recipes.textile +103 -0
- data/doc/pages/settings_profiles.textile +274 -0
- data/doc/pages/testing.textile +212 -0
- data/doc/pages/troubleshooting.textile +103 -0
- data/doc/pages/whats_new.textile +323 -0
- data/doc/print.haml +51 -0
- data/doc/print.toc.yaml +29 -0
- data/doc/scripts/buildr-git.rb +412 -0
- data/doc/scripts/install-jruby.sh +44 -0
- data/doc/scripts/install-linux.sh +64 -0
- data/doc/scripts/install-osx.sh +52 -0
- data/doc/site.haml +56 -0
- data/doc/site.toc.yaml +47 -0
- data/etc/KEYS +151 -0
- data/etc/git-svn-authors +16 -0
- data/lib/buildr.rb +35 -0
- data/lib/buildr/core.rb +27 -0
- data/lib/buildr/core/application.rb +489 -0
- data/lib/buildr/core/application_cli.rb +139 -0
- data/lib/buildr/core/build.rb +311 -0
- data/lib/buildr/core/checks.rb +382 -0
- data/lib/buildr/core/common.rb +154 -0
- data/lib/buildr/core/compile.rb +596 -0
- data/lib/buildr/core/environment.rb +120 -0
- data/lib/buildr/core/filter.rb +362 -0
- data/lib/buildr/core/generate.rb +195 -0
- data/lib/buildr/core/help.rb +118 -0
- data/lib/buildr/core/progressbar.rb +156 -0
- data/lib/buildr/core/project.rb +892 -0
- data/lib/buildr/core/test.rb +715 -0
- data/lib/buildr/core/transports.rb +558 -0
- data/lib/buildr/core/util.rb +289 -0
- data/lib/buildr/groovy.rb +18 -0
- data/lib/buildr/groovy/bdd.rb +105 -0
- data/lib/buildr/groovy/compiler.rb +138 -0
- data/lib/buildr/ide.rb +19 -0
- data/lib/buildr/ide/eclipse.rb +212 -0
- data/lib/buildr/ide/idea.ipr.template +300 -0
- data/lib/buildr/ide/idea.rb +189 -0
- data/lib/buildr/ide/idea7x.ipr.template +290 -0
- data/lib/buildr/ide/idea7x.rb +210 -0
- data/lib/buildr/java.rb +23 -0
- data/lib/buildr/java/ant.rb +92 -0
- data/lib/buildr/java/bdd.rb +449 -0
- data/lib/buildr/java/commands.rb +211 -0
- data/lib/buildr/java/compiler.rb +348 -0
- data/lib/buildr/java/deprecated.rb +141 -0
- data/lib/buildr/java/jruby.rb +117 -0
- data/lib/buildr/java/jtestr_runner.rb.erb +116 -0
- data/lib/buildr/java/org/apache/buildr/JavaTestFilter.class +0 -0
- data/lib/buildr/java/org/apache/buildr/JavaTestFilter.java +119 -0
- data/lib/buildr/java/packaging.rb +713 -0
- data/lib/buildr/java/pom.rb +178 -0
- data/lib/buildr/java/rjb.rb +155 -0
- data/lib/buildr/java/test_result.rb +308 -0
- data/lib/buildr/java/tests.rb +324 -0
- data/lib/buildr/java/version_requirement.rb +172 -0
- data/lib/buildr/packaging.rb +21 -0
- data/lib/buildr/packaging/artifact.rb +730 -0
- data/lib/buildr/packaging/artifact_namespace.rb +972 -0
- data/lib/buildr/packaging/artifact_search.rb +140 -0
- data/lib/buildr/packaging/gems.rb +102 -0
- data/lib/buildr/packaging/package.rb +233 -0
- data/lib/buildr/packaging/tar.rb +104 -0
- data/lib/buildr/packaging/zip.rb +722 -0
- data/lib/buildr/resources/buildr.icns +0 -0
- data/lib/buildr/scala.rb +19 -0
- data/lib/buildr/scala/compiler.rb +109 -0
- data/lib/buildr/scala/tests.rb +203 -0
- data/rakelib/apache.rake +191 -0
- data/rakelib/changelog.rake +57 -0
- data/rakelib/doc.rake +103 -0
- data/rakelib/package.rake +73 -0
- data/rakelib/release.rake +65 -0
- data/rakelib/rspec.rake +83 -0
- data/rakelib/rubyforge.rake +53 -0
- data/rakelib/scm.rake +49 -0
- data/rakelib/setup.rake +86 -0
- data/rakelib/stage.rake +48 -0
- data/spec/addon/cobertura_spec.rb +77 -0
- data/spec/addon/emma_spec.rb +120 -0
- data/spec/addon/test_coverage_spec.rb +255 -0
- data/spec/core/application_spec.rb +412 -0
- data/spec/core/artifact_namespace_spec.rb +646 -0
- data/spec/core/build_spec.rb +415 -0
- data/spec/core/checks_spec.rb +537 -0
- data/spec/core/common_spec.rb +664 -0
- data/spec/core/compile_spec.rb +566 -0
- data/spec/core/generate_spec.rb +33 -0
- data/spec/core/project_spec.rb +754 -0
- data/spec/core/test_spec.rb +1091 -0
- data/spec/core/transport_spec.rb +500 -0
- data/spec/groovy/bdd_spec.rb +80 -0
- data/spec/groovy/compiler_spec.rb +239 -0
- data/spec/ide/eclipse_spec.rb +243 -0
- data/spec/java/ant.rb +28 -0
- data/spec/java/bdd_spec.rb +358 -0
- data/spec/java/compiler_spec.rb +446 -0
- data/spec/java/java_spec.rb +88 -0
- data/spec/java/packaging_spec.rb +1103 -0
- data/spec/java/tests_spec.rb +466 -0
- data/spec/packaging/archive_spec.rb +503 -0
- data/spec/packaging/artifact_spec.rb +754 -0
- data/spec/packaging/packaging_helper.rb +63 -0
- data/spec/packaging/packaging_spec.rb +589 -0
- data/spec/sandbox.rb +137 -0
- data/spec/scala/compiler_spec.rb +228 -0
- data/spec/scala/tests_spec.rb +215 -0
- data/spec/spec_helpers.rb +304 -0
- data/spec/version_requirement_spec.rb +123 -0
- metadata +369 -0
data/lib/buildr/ide.rb
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
2
|
+
# contributor license agreements. See the NOTICE file distributed with this
|
|
3
|
+
# work for additional information regarding copyright ownership. The ASF
|
|
4
|
+
# licenses this file to you under the Apache License, Version 2.0 (the
|
|
5
|
+
# "License"); you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
12
|
+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
13
|
+
# License for the specific language governing permissions and limitations under
|
|
14
|
+
# the License.
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
require 'buildr/ide/eclipse'
|
|
18
|
+
require 'buildr/ide/idea'
|
|
19
|
+
require 'buildr/ide/idea7x'
|
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
2
|
+
# contributor license agreements. See the NOTICE file distributed with this
|
|
3
|
+
# work for additional information regarding copyright ownership. The ASF
|
|
4
|
+
# licenses this file to you under the Apache License, Version 2.0 (the
|
|
5
|
+
# "License"); you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
12
|
+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
13
|
+
# License for the specific language governing permissions and limitations under
|
|
14
|
+
# the License.
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
require 'buildr/core/project'
|
|
18
|
+
require 'buildr/packaging'
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
module Buildr
|
|
22
|
+
module Eclipse #:nodoc:
|
|
23
|
+
|
|
24
|
+
include Extension
|
|
25
|
+
|
|
26
|
+
first_time do
|
|
27
|
+
# Global task "eclipse" generates artifacts for all projects.
|
|
28
|
+
desc "Generate Eclipse artifacts for all projects"
|
|
29
|
+
Project.local_task "eclipse"=>"artifacts"
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
before_define do |project|
|
|
33
|
+
project.recursive_task("eclipse")
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
after_define do |project|
|
|
37
|
+
eclipse = project.task("eclipse")
|
|
38
|
+
|
|
39
|
+
# Check if project has scala facet
|
|
40
|
+
scala = project.compile.language == :scala
|
|
41
|
+
|
|
42
|
+
# Only for projects that we support
|
|
43
|
+
supported_languages = [:java, :scala]
|
|
44
|
+
supported_packaging = %w(jar war rar mar aar)
|
|
45
|
+
if (supported_languages.include? project.compile.language ||
|
|
46
|
+
project.packages.detect { |pkg| supported_packaging.include?(pkg.type.to_s) })
|
|
47
|
+
eclipse.enhance [ file(project.path_to(".classpath")), file(project.path_to(".project")) ]
|
|
48
|
+
|
|
49
|
+
# The only thing we need to look for is a change in the Buildfile.
|
|
50
|
+
file(project.path_to(".classpath")=>Buildr.application.buildfile) do |task|
|
|
51
|
+
info "Writing #{task.name}"
|
|
52
|
+
|
|
53
|
+
m2repo = Buildr::Repositories.instance.local
|
|
54
|
+
|
|
55
|
+
File.open(task.name, "w") do |file|
|
|
56
|
+
classpathentry = ClasspathEntryWriter.new project, file
|
|
57
|
+
classpathentry.write do
|
|
58
|
+
# Note: Use the test classpath since Eclipse compiles both "main" and "test" classes using the same classpath
|
|
59
|
+
cp = project.test.compile.dependencies.map(&:to_s) - [ project.compile.target.to_s, project.resources.target.to_s ]
|
|
60
|
+
cp = cp.uniq
|
|
61
|
+
|
|
62
|
+
# Convert classpath elements into applicable Project objects
|
|
63
|
+
cp.collect! { |path| Buildr.projects.detect { |prj| prj.packages.detect { |pkg| pkg.to_s == path } } || path }
|
|
64
|
+
|
|
65
|
+
# project_libs: artifacts created by other projects
|
|
66
|
+
project_libs, others = cp.partition { |path| path.is_a?(Project) }
|
|
67
|
+
|
|
68
|
+
# Separate artifacts from Maven2 repository
|
|
69
|
+
m2_libs, others = others.partition { |path| path.to_s.index(m2repo) == 0 }
|
|
70
|
+
|
|
71
|
+
# Generated: classpath elements in the project are assumed to be generated
|
|
72
|
+
generated, libs = others.partition { |path| path.to_s.index(project.path_to.to_s) == 0 }
|
|
73
|
+
|
|
74
|
+
classpathentry.src project.compile.sources + generated
|
|
75
|
+
classpathentry.src project.resources
|
|
76
|
+
|
|
77
|
+
if project.test.compile.target
|
|
78
|
+
classpathentry.src project.test.compile
|
|
79
|
+
classpathentry.src project.test.resources
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
# Classpath elements from other projects
|
|
83
|
+
classpathentry.src_projects project_libs
|
|
84
|
+
|
|
85
|
+
classpathentry.output project.compile.target
|
|
86
|
+
classpathentry.lib libs
|
|
87
|
+
classpathentry.var m2_libs, 'M2_REPO', m2repo
|
|
88
|
+
|
|
89
|
+
classpathentry.con 'ch.epfl.lamp.sdt.launching.SCALA_CONTAINER' if scala
|
|
90
|
+
classpathentry.con 'org.eclipse.jdt.launching.JRE_CONTAINER'
|
|
91
|
+
end
|
|
92
|
+
end
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
# The only thing we need to look for is a change in the Buildfile.
|
|
96
|
+
file(project.path_to(".project")=>Buildr.application.buildfile) do |task|
|
|
97
|
+
info "Writing #{task.name}"
|
|
98
|
+
File.open(task.name, "w") do |file|
|
|
99
|
+
xml = Builder::XmlMarkup.new(:target=>file, :indent=>2)
|
|
100
|
+
xml.projectDescription do
|
|
101
|
+
xml.name project.id
|
|
102
|
+
xml.projects
|
|
103
|
+
xml.buildSpec do
|
|
104
|
+
if scala
|
|
105
|
+
xml.buildCommand do
|
|
106
|
+
xml.name "ch.epfl.lamp.sdt.core.scalabuilder"
|
|
107
|
+
end
|
|
108
|
+
else
|
|
109
|
+
xml.buildCommand do
|
|
110
|
+
xml.name "org.eclipse.jdt.core.javabuilder"
|
|
111
|
+
end
|
|
112
|
+
end
|
|
113
|
+
end
|
|
114
|
+
xml.natures do
|
|
115
|
+
xml.nature "ch.epfl.lamp.sdt.core.scalanature" if scala
|
|
116
|
+
xml.nature "org.eclipse.jdt.core.javanature"
|
|
117
|
+
end
|
|
118
|
+
end
|
|
119
|
+
end
|
|
120
|
+
end
|
|
121
|
+
end
|
|
122
|
+
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
# Writes 'classpathentry' tags in an xml file.
|
|
126
|
+
# It converts tasks to paths.
|
|
127
|
+
# It converts absolute paths to relative paths.
|
|
128
|
+
# It ignores duplicate directories.
|
|
129
|
+
class ClasspathEntryWriter
|
|
130
|
+
def initialize project, target
|
|
131
|
+
@project = project
|
|
132
|
+
@xml = Builder::XmlMarkup.new(:target=>target, :indent=>2)
|
|
133
|
+
@excludes = [ '**/.svn/', '**/CVS/' ].join('|')
|
|
134
|
+
@paths_written = []
|
|
135
|
+
end
|
|
136
|
+
|
|
137
|
+
def write &block
|
|
138
|
+
@xml.classpath &block
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
def con path
|
|
142
|
+
@xml.classpathentry :kind=>'con', :path=>path
|
|
143
|
+
end
|
|
144
|
+
|
|
145
|
+
def lib libs
|
|
146
|
+
libs.map(&:to_s).sort.uniq.each do |path|
|
|
147
|
+
@xml.classpathentry :kind=>'lib', :path=>path
|
|
148
|
+
end
|
|
149
|
+
end
|
|
150
|
+
|
|
151
|
+
# Write a classpathentry of kind 'src'.
|
|
152
|
+
# Accepts an array of absolute paths or a task.
|
|
153
|
+
def src arg
|
|
154
|
+
if [:sources, :target].all? { |message| arg.respond_to?(message) }
|
|
155
|
+
src_from_task arg
|
|
156
|
+
else
|
|
157
|
+
src_from_absolute_paths arg
|
|
158
|
+
end
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
# Write a classpathentry of kind 'src' for dependent projects.
|
|
162
|
+
# Accepts an array of projects.
|
|
163
|
+
def src_projects project_libs
|
|
164
|
+
project_libs.map(&:id).sort.uniq.each do |project_id|
|
|
165
|
+
@xml.classpathentry :kind=>'src', :combineaccessrules=>"false", :path=>"/#{project_id}"
|
|
166
|
+
end
|
|
167
|
+
end
|
|
168
|
+
|
|
169
|
+
def output target
|
|
170
|
+
@xml.classpathentry :kind=>'output', :path=>relative(target)
|
|
171
|
+
end
|
|
172
|
+
|
|
173
|
+
def var libs, var_name, var_value
|
|
174
|
+
libs.map { |lib| lib.to_s.sub(var_value, var_name) }.sort.uniq.each do |path|
|
|
175
|
+
@xml.classpathentry :kind=>'var', :path=>path
|
|
176
|
+
end
|
|
177
|
+
end
|
|
178
|
+
|
|
179
|
+
private
|
|
180
|
+
|
|
181
|
+
# Find a path relative to the project's root directory.
|
|
182
|
+
def relative path
|
|
183
|
+
path or raise "Invalid path '#{path.inspect}'"
|
|
184
|
+
msg = [:to_path, :to_str, :to_s].find { |msg| path.respond_to? msg }
|
|
185
|
+
path = path.__send__(msg)
|
|
186
|
+
Util.relative_path(File.expand_path(path), @project.path_to)
|
|
187
|
+
end
|
|
188
|
+
|
|
189
|
+
def src_from_task task
|
|
190
|
+
src_from_absolute_paths task.sources, task.target
|
|
191
|
+
end
|
|
192
|
+
|
|
193
|
+
def src_from_absolute_paths absolute_paths, output=nil
|
|
194
|
+
relative_paths = absolute_paths.map { |src| relative(src) }
|
|
195
|
+
relative_paths.sort.uniq.each do |path|
|
|
196
|
+
unless @paths_written.include?(path)
|
|
197
|
+
attributes = { :kind=>'src', :path=>path, :excluding=>@excludes }
|
|
198
|
+
attributes[:output] = relative(output) if output
|
|
199
|
+
@xml.classpathentry attributes
|
|
200
|
+
@paths_written << path
|
|
201
|
+
end
|
|
202
|
+
end
|
|
203
|
+
end
|
|
204
|
+
end
|
|
205
|
+
|
|
206
|
+
end
|
|
207
|
+
end # module Buildr
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
class Buildr::Project
|
|
211
|
+
include Buildr::Eclipse
|
|
212
|
+
end
|
|
@@ -0,0 +1,300 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!--
|
|
3
|
+
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
4
|
+
contributor license agreements. See the NOTICE file distributed with this
|
|
5
|
+
work for additional information regarding copyright ownership. The ASF
|
|
6
|
+
licenses this file to you under the Apache License, Version 2.0 (the
|
|
7
|
+
"License"); you may not use this file except in compliance with the License.
|
|
8
|
+
You may obtain a copy of the License at
|
|
9
|
+
|
|
10
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
|
|
12
|
+
Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
14
|
+
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
15
|
+
License for the specific language governing permissions and limitations under
|
|
16
|
+
the License.
|
|
17
|
+
-->
|
|
18
|
+
<project version="4" relativePaths="false">
|
|
19
|
+
<component name="AntConfiguration">
|
|
20
|
+
<defaultAnt bundledAnt="true" />
|
|
21
|
+
</component>
|
|
22
|
+
<component name="BuildJarProjectSettings">
|
|
23
|
+
<option name="BUILD_JARS_ON_MAKE" value="false" />
|
|
24
|
+
</component>
|
|
25
|
+
<component name="CodeStyleManager">
|
|
26
|
+
<option name="USE_DEFAULT_CODE_STYLE_SCHEME" value="true" />
|
|
27
|
+
<option name="CODE_STYLE_SCHEME" value="" />
|
|
28
|
+
</component>
|
|
29
|
+
<component name="CodeStyleProjectProfileManger">
|
|
30
|
+
<option name="PROJECT_PROFILE" />
|
|
31
|
+
<option name="USE_PROJECT_LEVEL_SETTINGS" value="false" />
|
|
32
|
+
</component>
|
|
33
|
+
<component name="CodeStyleSettingsManager">
|
|
34
|
+
<option name="PER_PROJECT_SETTINGS" />
|
|
35
|
+
<option name="USE_PER_PROJECT_SETTINGS" value="false" />
|
|
36
|
+
</component>
|
|
37
|
+
<component name="CompilerConfiguration">
|
|
38
|
+
<option name="DEFAULT_COMPILER" value="Javac" />
|
|
39
|
+
<option name="DEPLOY_AFTER_MAKE" value="0" />
|
|
40
|
+
<resourceExtensions />
|
|
41
|
+
<wildcardResourcePatterns>
|
|
42
|
+
<entry name="!?*.java" />
|
|
43
|
+
</wildcardResourcePatterns>
|
|
44
|
+
</component>
|
|
45
|
+
<component name="DataSourceManager" />
|
|
46
|
+
<component name="DataSourceManagerImpl" />
|
|
47
|
+
<component name="DependenciesAnalyzeManager">
|
|
48
|
+
<option name="myForwardDirection" value="false" />
|
|
49
|
+
</component>
|
|
50
|
+
<component name="DependencyValidationManager" />
|
|
51
|
+
<component name="EclipseCompilerSettings">
|
|
52
|
+
<option name="DEBUGGING_INFO" value="true" />
|
|
53
|
+
<option name="GENERATE_NO_WARNINGS" value="true" />
|
|
54
|
+
<option name="DEPRECATION" value="false" />
|
|
55
|
+
<option name="ADDITIONAL_OPTIONS_STRING" value="" />
|
|
56
|
+
<option name="MAXIMUM_HEAP_SIZE" value="128" />
|
|
57
|
+
</component>
|
|
58
|
+
<component name="EclipseEmbeddedCompilerSettings">
|
|
59
|
+
<option name="DEBUGGING_INFO" value="true" />
|
|
60
|
+
<option name="GENERATE_NO_WARNINGS" value="true" />
|
|
61
|
+
<option name="DEPRECATION" value="false" />
|
|
62
|
+
<option name="ADDITIONAL_OPTIONS_STRING" value="" />
|
|
63
|
+
<option name="MAXIMUM_HEAP_SIZE" value="128" />
|
|
64
|
+
</component>
|
|
65
|
+
<component name="EntryPointsManager">
|
|
66
|
+
<entry_points />
|
|
67
|
+
</component>
|
|
68
|
+
<component name="ExportToHTMLSettings">
|
|
69
|
+
<option name="PRINT_LINE_NUMBERS" value="false" />
|
|
70
|
+
<option name="OPEN_IN_BROWSER" value="false" />
|
|
71
|
+
<option name="OUTPUT_DIRECTORY" />
|
|
72
|
+
</component>
|
|
73
|
+
<component name="GUI Designer component loader factory" />
|
|
74
|
+
<component name="IdProvider" IDEtalkID="0246D33576B8D4BC3331F9A5BB848389" />
|
|
75
|
+
<component name="ImportConfiguration">
|
|
76
|
+
<option name="VENDOR" />
|
|
77
|
+
<option name="RELEASE_TAG" />
|
|
78
|
+
<option name="LOG_MESSAGE" />
|
|
79
|
+
<option name="CHECKOUT_AFTER_IMPORT" value="true" />
|
|
80
|
+
</component>
|
|
81
|
+
<component name="InspectionProjectProfileManager">
|
|
82
|
+
<option name="PROJECT_PROFILE" value="Project Default" />
|
|
83
|
+
<option name="USE_PROJECT_LEVEL_SETTINGS" value="false" />
|
|
84
|
+
<scopes />
|
|
85
|
+
<profiles>
|
|
86
|
+
<profile version="1.0" is_locked="false">
|
|
87
|
+
<option name="myName" value="Project Default" />
|
|
88
|
+
<option name="myLocal" value="false" />
|
|
89
|
+
<used_levels>
|
|
90
|
+
<error>
|
|
91
|
+
<option name="myName" value="ERROR" />
|
|
92
|
+
<option name="myVal" value="400" />
|
|
93
|
+
</error>
|
|
94
|
+
<warning>
|
|
95
|
+
<option name="myName" value="WARNING" />
|
|
96
|
+
<option name="myVal" value="300" />
|
|
97
|
+
</warning>
|
|
98
|
+
<information>
|
|
99
|
+
<option name="myName" value="INFO" />
|
|
100
|
+
<option name="myVal" value="200" />
|
|
101
|
+
</information>
|
|
102
|
+
<server>
|
|
103
|
+
<option name="myName" value="SERVER PROBLEM" />
|
|
104
|
+
<option name="myVal" value="100" />
|
|
105
|
+
</server>
|
|
106
|
+
</used_levels>
|
|
107
|
+
</profile>
|
|
108
|
+
</profiles>
|
|
109
|
+
</component>
|
|
110
|
+
<component name="JUnitProjectSettings">
|
|
111
|
+
<option name="TEST_RUNNER" value="UI" />
|
|
112
|
+
</component>
|
|
113
|
+
<component name="JavacSettings">
|
|
114
|
+
<option name="DEBUGGING_INFO" value="true" />
|
|
115
|
+
<option name="GENERATE_NO_WARNINGS" value="false" />
|
|
116
|
+
<option name="DEPRECATION" value="true" />
|
|
117
|
+
<option name="ADDITIONAL_OPTIONS_STRING" value="" />
|
|
118
|
+
<option name="MAXIMUM_HEAP_SIZE" value="128" />
|
|
119
|
+
</component>
|
|
120
|
+
<component name="JavadocGenerationManager">
|
|
121
|
+
<option name="OUTPUT_DIRECTORY" />
|
|
122
|
+
<option name="OPTION_SCOPE" value="protected" />
|
|
123
|
+
<option name="OPTION_HIERARCHY" value="false" />
|
|
124
|
+
<option name="OPTION_NAVIGATOR" value="false" />
|
|
125
|
+
<option name="OPTION_INDEX" value="false" />
|
|
126
|
+
<option name="OPTION_SEPARATE_INDEX" value="false" />
|
|
127
|
+
<option name="OPTION_DOCUMENT_TAG_USE" value="false" />
|
|
128
|
+
<option name="OPTION_DOCUMENT_TAG_AUTHOR" value="false" />
|
|
129
|
+
<option name="OPTION_DOCUMENT_TAG_VERSION" value="false" />
|
|
130
|
+
<option name="OPTION_DOCUMENT_TAG_DEPRECATED" value="false" />
|
|
131
|
+
<option name="OPTION_DEPRECATED_LIST" value="false" />
|
|
132
|
+
<option name="OTHER_OPTIONS" />
|
|
133
|
+
<option name="HEAP_SIZE" />
|
|
134
|
+
<option name="LOCALE" />
|
|
135
|
+
<option name="OPEN_IN_BROWSER" value="false" />
|
|
136
|
+
</component>
|
|
137
|
+
<component name="JikesSettings">
|
|
138
|
+
<option name="JIKES_PATH" value="" />
|
|
139
|
+
<option name="DEBUGGING_INFO" value="true" />
|
|
140
|
+
<option name="DEPRECATION" value="true" />
|
|
141
|
+
<option name="GENERATE_NO_WARNINGS" value="false" />
|
|
142
|
+
<option name="IS_EMACS_ERRORS_MODE" value="true" />
|
|
143
|
+
<option name="ADDITIONAL_OPTIONS_STRING" value="" />
|
|
144
|
+
</component>
|
|
145
|
+
<component name="LogConsolePreferences">
|
|
146
|
+
<option name="FILTER_ERRORS" value="false" />
|
|
147
|
+
<option name="FILTER_WARNINGS" value="false" />
|
|
148
|
+
<option name="FILTER_INFO" value="true" />
|
|
149
|
+
<option name="CUSTOM_FILTER" />
|
|
150
|
+
</component>
|
|
151
|
+
<component name="Palette2">
|
|
152
|
+
<group name="Swing">
|
|
153
|
+
<item class="com.intellij.uiDesigner.HSpacer" tooltip-text="Horizontal Spacer" icon="/com/intellij/uiDesigner/icons/hspacer.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
|
154
|
+
<default-constraints vsize-policy="1" hsize-policy="6" anchor="0" fill="1" />
|
|
155
|
+
</item>
|
|
156
|
+
<item class="com.intellij.uiDesigner.VSpacer" tooltip-text="Vertical Spacer" icon="/com/intellij/uiDesigner/icons/vspacer.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
|
157
|
+
<default-constraints vsize-policy="6" hsize-policy="1" anchor="0" fill="2" />
|
|
158
|
+
</item>
|
|
159
|
+
<item class="javax.swing.JPanel" icon="/com/intellij/uiDesigner/icons/panel.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
|
160
|
+
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3" />
|
|
161
|
+
</item>
|
|
162
|
+
<item class="javax.swing.JScrollPane" icon="/com/intellij/uiDesigner/icons/scrollPane.png" removable="false" auto-create-binding="false" can-attach-label="true">
|
|
163
|
+
<default-constraints vsize-policy="7" hsize-policy="7" anchor="0" fill="3" />
|
|
164
|
+
</item>
|
|
165
|
+
<item class="javax.swing.JButton" icon="/com/intellij/uiDesigner/icons/button.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
|
166
|
+
<default-constraints vsize-policy="0" hsize-policy="3" anchor="0" fill="1" />
|
|
167
|
+
<initial-values>
|
|
168
|
+
<property name="text" value="Button" />
|
|
169
|
+
</initial-values>
|
|
170
|
+
</item>
|
|
171
|
+
<item class="javax.swing.JRadioButton" icon="/com/intellij/uiDesigner/icons/radioButton.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
|
172
|
+
<default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" />
|
|
173
|
+
<initial-values>
|
|
174
|
+
<property name="text" value="RadioButton" />
|
|
175
|
+
</initial-values>
|
|
176
|
+
</item>
|
|
177
|
+
<item class="javax.swing.JCheckBox" icon="/com/intellij/uiDesigner/icons/checkBox.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
|
178
|
+
<default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" />
|
|
179
|
+
<initial-values>
|
|
180
|
+
<property name="text" value="CheckBox" />
|
|
181
|
+
</initial-values>
|
|
182
|
+
</item>
|
|
183
|
+
<item class="javax.swing.JLabel" icon="/com/intellij/uiDesigner/icons/label.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
|
184
|
+
<default-constraints vsize-policy="0" hsize-policy="0" anchor="8" fill="0" />
|
|
185
|
+
<initial-values>
|
|
186
|
+
<property name="text" value="Label" />
|
|
187
|
+
</initial-values>
|
|
188
|
+
</item>
|
|
189
|
+
<item class="javax.swing.JTextField" icon="/com/intellij/uiDesigner/icons/textField.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
|
190
|
+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
|
|
191
|
+
<preferred-size width="150" height="-1" />
|
|
192
|
+
</default-constraints>
|
|
193
|
+
</item>
|
|
194
|
+
<item class="javax.swing.JPasswordField" icon="/com/intellij/uiDesigner/icons/passwordField.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
|
195
|
+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
|
|
196
|
+
<preferred-size width="150" height="-1" />
|
|
197
|
+
</default-constraints>
|
|
198
|
+
</item>
|
|
199
|
+
<item class="javax.swing.JFormattedTextField" icon="/com/intellij/uiDesigner/icons/formattedTextField.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
|
200
|
+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
|
|
201
|
+
<preferred-size width="150" height="-1" />
|
|
202
|
+
</default-constraints>
|
|
203
|
+
</item>
|
|
204
|
+
<item class="javax.swing.JTextArea" icon="/com/intellij/uiDesigner/icons/textArea.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
|
205
|
+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
|
206
|
+
<preferred-size width="150" height="50" />
|
|
207
|
+
</default-constraints>
|
|
208
|
+
</item>
|
|
209
|
+
<item class="javax.swing.JTextPane" icon="/com/intellij/uiDesigner/icons/textPane.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
|
210
|
+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
|
211
|
+
<preferred-size width="150" height="50" />
|
|
212
|
+
</default-constraints>
|
|
213
|
+
</item>
|
|
214
|
+
<item class="javax.swing.JEditorPane" icon="/com/intellij/uiDesigner/icons/editorPane.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
|
215
|
+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
|
216
|
+
<preferred-size width="150" height="50" />
|
|
217
|
+
</default-constraints>
|
|
218
|
+
</item>
|
|
219
|
+
<item class="javax.swing.JComboBox" icon="/com/intellij/uiDesigner/icons/comboBox.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
|
220
|
+
<default-constraints vsize-policy="0" hsize-policy="2" anchor="8" fill="1" />
|
|
221
|
+
</item>
|
|
222
|
+
<item class="javax.swing.JTable" icon="/com/intellij/uiDesigner/icons/table.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
|
223
|
+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
|
224
|
+
<preferred-size width="150" height="50" />
|
|
225
|
+
</default-constraints>
|
|
226
|
+
</item>
|
|
227
|
+
<item class="javax.swing.JList" icon="/com/intellij/uiDesigner/icons/list.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
|
228
|
+
<default-constraints vsize-policy="6" hsize-policy="2" anchor="0" fill="3">
|
|
229
|
+
<preferred-size width="150" height="50" />
|
|
230
|
+
</default-constraints>
|
|
231
|
+
</item>
|
|
232
|
+
<item class="javax.swing.JTree" icon="/com/intellij/uiDesigner/icons/tree.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
|
233
|
+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
|
234
|
+
<preferred-size width="150" height="50" />
|
|
235
|
+
</default-constraints>
|
|
236
|
+
</item>
|
|
237
|
+
<item class="javax.swing.JTabbedPane" icon="/com/intellij/uiDesigner/icons/tabbedPane.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
|
238
|
+
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3">
|
|
239
|
+
<preferred-size width="200" height="200" />
|
|
240
|
+
</default-constraints>
|
|
241
|
+
</item>
|
|
242
|
+
<item class="javax.swing.JSplitPane" icon="/com/intellij/uiDesigner/icons/splitPane.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
|
243
|
+
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3">
|
|
244
|
+
<preferred-size width="200" height="200" />
|
|
245
|
+
</default-constraints>
|
|
246
|
+
</item>
|
|
247
|
+
<item class="javax.swing.JSpinner" icon="/com/intellij/uiDesigner/icons/spinner.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
|
248
|
+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" />
|
|
249
|
+
</item>
|
|
250
|
+
<item class="javax.swing.JSlider" icon="/com/intellij/uiDesigner/icons/slider.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
|
251
|
+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" />
|
|
252
|
+
</item>
|
|
253
|
+
<item class="javax.swing.JSeparator" icon="/com/intellij/uiDesigner/icons/separator.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
|
254
|
+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3" />
|
|
255
|
+
</item>
|
|
256
|
+
<item class="javax.swing.JProgressBar" icon="/com/intellij/uiDesigner/icons/progressbar.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
|
257
|
+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1" />
|
|
258
|
+
</item>
|
|
259
|
+
<item class="javax.swing.JToolBar" icon="/com/intellij/uiDesigner/icons/toolbar.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
|
260
|
+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1">
|
|
261
|
+
<preferred-size width="-1" height="20" />
|
|
262
|
+
</default-constraints>
|
|
263
|
+
</item>
|
|
264
|
+
<item class="javax.swing.JToolBar$Separator" icon="/com/intellij/uiDesigner/icons/toolbarSeparator.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
|
265
|
+
<default-constraints vsize-policy="0" hsize-policy="0" anchor="0" fill="1" />
|
|
266
|
+
</item>
|
|
267
|
+
<item class="javax.swing.JScrollBar" icon="/com/intellij/uiDesigner/icons/scrollbar.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
|
268
|
+
<default-constraints vsize-policy="6" hsize-policy="0" anchor="0" fill="2" />
|
|
269
|
+
</item>
|
|
270
|
+
</group>
|
|
271
|
+
</component>
|
|
272
|
+
<component name="ProjectRootManager" version="2" assert-keyword="true" jdk-15="true" project-jdk-name="1.5" />
|
|
273
|
+
<component name="ProjectRunConfigurationManager" />
|
|
274
|
+
<component name="RmicSettings">
|
|
275
|
+
<option name="IS_EANABLED" value="false" />
|
|
276
|
+
<option name="DEBUGGING_INFO" value="true" />
|
|
277
|
+
<option name="GENERATE_NO_WARNINGS" value="false" />
|
|
278
|
+
<option name="GENERATE_IIOP_STUBS" value="false" />
|
|
279
|
+
<option name="ADDITIONAL_OPTIONS_STRING" value="" />
|
|
280
|
+
</component>
|
|
281
|
+
<component name="StarteamVcsAdapter" />
|
|
282
|
+
<component name="VssVcs" />
|
|
283
|
+
<component name="com.intellij.jsf.UserDefinedFacesConfigs">
|
|
284
|
+
<option name="USER_DEFINED_CONFIGS">
|
|
285
|
+
<value>
|
|
286
|
+
<list size="0" />
|
|
287
|
+
</value>
|
|
288
|
+
</option>
|
|
289
|
+
</component>
|
|
290
|
+
<component name="uidesigner-configuration">
|
|
291
|
+
<option name="INSTRUMENT_CLASSES" value="true" />
|
|
292
|
+
<option name="COPY_FORMS_RUNTIME_TO_OUTPUT" value="true" />
|
|
293
|
+
<option name="DEFAULT_LAYOUT_MANAGER" value="GridLayoutManager" />
|
|
294
|
+
</component>
|
|
295
|
+
<UsedPathMacros>
|
|
296
|
+
<macro name="M2_REPO" />
|
|
297
|
+
</UsedPathMacros>
|
|
298
|
+
</project>
|
|
299
|
+
|
|
300
|
+
|