buildr 1.3.5-x86-mswin32
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 +998 -0
- data/LICENSE +176 -0
- data/NOTICE +26 -0
- data/README.rdoc +134 -0
- data/Rakefile +45 -0
- data/_buildr +29 -0
- data/_jbuildr +29 -0
- data/addon/buildr/antlr.rb +65 -0
- data/addon/buildr/cobertura.rb +22 -0
- data/addon/buildr/drb.rb +281 -0
- data/addon/buildr/emma.rb +22 -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 +221 -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 +19 -0
- data/buildr.buildfile +58 -0
- data/buildr.gemspec +65 -0
- data/doc/_config.yml +1 -0
- data/doc/_layouts/default.html +88 -0
- data/doc/_layouts/preface.html +22 -0
- data/doc/artifacts.textile +211 -0
- data/doc/building.textile +244 -0
- data/doc/contributing.textile +252 -0
- data/doc/css/default.css +236 -0
- data/doc/css/print.css +101 -0
- data/doc/css/syntax.css +23 -0
- data/doc/download.textile +79 -0
- data/doc/extending.textile +186 -0
- data/doc/images/1442160941-frontcover.jpg +0 -0
- data/doc/images/asf-logo.gif +0 -0
- data/doc/images/asf-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.png +0 -0
- data/doc/images/zbuildr.tif +0 -0
- data/doc/index.textile +69 -0
- data/doc/installing.textile +266 -0
- data/doc/languages.textile +459 -0
- data/doc/mailing_lists.textile +25 -0
- data/doc/more_stuff.textile +457 -0
- data/doc/packaging.textile +430 -0
- data/doc/preface.textile +54 -0
- data/doc/projects.textile +271 -0
- data/doc/quick_start.textile +210 -0
- data/doc/scripts/buildr-git.rb +512 -0
- data/doc/scripts/gitflow.rb +296 -0
- data/doc/scripts/install-jruby.sh +44 -0
- data/doc/scripts/install-linux.sh +72 -0
- data/doc/scripts/install-osx.sh +52 -0
- data/doc/settings_profiles.textile +280 -0
- data/doc/testing.textile +222 -0
- data/etc/KEYS +151 -0
- data/lib/buildr.rb +36 -0
- data/lib/buildr/core.rb +35 -0
- data/lib/buildr/core/application.rb +656 -0
- data/lib/buildr/core/build.rb +452 -0
- data/lib/buildr/core/checks.rb +254 -0
- data/lib/buildr/core/common.rb +150 -0
- data/lib/buildr/core/compile.rb +608 -0
- data/lib/buildr/core/environment.rb +129 -0
- data/lib/buildr/core/filter.rb +362 -0
- data/lib/buildr/core/generate.rb +195 -0
- data/lib/buildr/core/help.rb +119 -0
- data/lib/buildr/core/osx.rb +46 -0
- data/lib/buildr/core/progressbar.rb +156 -0
- data/lib/buildr/core/project.rb +866 -0
- data/lib/buildr/core/shell.rb +198 -0
- data/lib/buildr/core/test.rb +723 -0
- data/lib/buildr/core/transports.rb +559 -0
- data/lib/buildr/core/util.rb +449 -0
- data/lib/buildr/groovy.rb +19 -0
- data/lib/buildr/groovy/bdd.rb +106 -0
- data/lib/buildr/groovy/compiler.rb +138 -0
- data/lib/buildr/groovy/shell.rb +48 -0
- data/lib/buildr/ide.rb +19 -0
- data/lib/buildr/ide/eclipse.rb +334 -0
- data/lib/buildr/ide/eclipse/java.rb +53 -0
- data/lib/buildr/ide/eclipse/plugin.rb +68 -0
- data/lib/buildr/ide/eclipse/scala.rb +66 -0
- data/lib/buildr/ide/idea.ipr.template +300 -0
- data/lib/buildr/ide/idea.rb +190 -0
- data/lib/buildr/ide/idea7x.ipr.template +290 -0
- data/lib/buildr/ide/idea7x.rb +212 -0
- data/lib/buildr/java.rb +23 -0
- data/lib/buildr/java/ant.rb +94 -0
- data/lib/buildr/java/bdd.rb +459 -0
- data/lib/buildr/java/cobertura.rb +274 -0
- data/lib/buildr/java/commands.rb +213 -0
- data/lib/buildr/java/compiler.rb +349 -0
- data/lib/buildr/java/deprecated.rb +141 -0
- data/lib/buildr/java/emma.rb +244 -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 +137 -0
- data/lib/buildr/java/packaging.rb +716 -0
- data/lib/buildr/java/pom.rb +174 -0
- data/lib/buildr/java/rjb.rb +155 -0
- data/lib/buildr/java/test_result.rb +353 -0
- data/lib/buildr/java/tests.rb +333 -0
- data/lib/buildr/java/version_requirement.rb +172 -0
- data/lib/buildr/packaging.rb +24 -0
- data/lib/buildr/packaging/archive.rb +488 -0
- data/lib/buildr/packaging/artifact.rb +749 -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 +238 -0
- data/lib/buildr/packaging/tar.rb +186 -0
- data/lib/buildr/packaging/version_requirement.rb +172 -0
- data/lib/buildr/packaging/zip.rb +73 -0
- data/lib/buildr/packaging/ziptask.rb +316 -0
- data/lib/buildr/resources/buildr.icns +0 -0
- data/lib/buildr/scala.rb +25 -0
- data/lib/buildr/scala/bdd.rb +109 -0
- data/lib/buildr/scala/compiler.rb +195 -0
- data/lib/buildr/scala/org/apache/buildr/SpecsSingletonRunner$.class +0 -0
- data/lib/buildr/scala/org/apache/buildr/SpecsSingletonRunner.class +0 -0
- data/lib/buildr/scala/org/apache/buildr/SpecsSingletonRunner.scala +35 -0
- data/lib/buildr/scala/shell.rb +55 -0
- data/lib/buildr/scala/tests.rb +157 -0
- data/lib/buildr/shell.rb +180 -0
- data/rakelib/checks.rake +57 -0
- data/rakelib/doc.rake +92 -0
- data/rakelib/jekylltask.rb +120 -0
- data/rakelib/package.rake +73 -0
- data/rakelib/release.rake +149 -0
- data/rakelib/rspec.rake +73 -0
- data/rakelib/setup.rake +54 -0
- data/rakelib/stage.rake +213 -0
- data/rakelib/stage.rake~ +213 -0
- data/spec/addon/drb_spec.rb +328 -0
- data/spec/core/application_spec.rb +502 -0
- data/spec/core/build_spec.rb +677 -0
- data/spec/core/checks_spec.rb +519 -0
- data/spec/core/common_spec.rb +670 -0
- data/spec/core/compile_spec.rb +583 -0
- data/spec/core/extension_spec.rb +93 -0
- data/spec/core/generate_spec.rb +33 -0
- data/spec/core/project_spec.rb +762 -0
- data/spec/core/test_spec.rb +1098 -0
- data/spec/core/transport_spec.rb +537 -0
- data/spec/core/util_spec.rb +67 -0
- data/spec/groovy/bdd_spec.rb +80 -0
- data/spec/groovy/compiler_spec.rb +240 -0
- data/spec/ide/eclipse_spec.rb +501 -0
- data/spec/ide/idea7x_spec.rb +84 -0
- data/spec/java/ant_spec.rb +33 -0
- data/spec/java/bdd_spec.rb +382 -0
- data/spec/java/cobertura_spec.rb +85 -0
- data/spec/java/compiler_spec.rb +446 -0
- data/spec/java/emma_spec.rb +119 -0
- data/spec/java/java_spec.rb +124 -0
- data/spec/java/packaging_spec.rb +1134 -0
- data/spec/java/test_coverage_helper.rb +257 -0
- data/spec/java/tests_spec.rb +493 -0
- data/spec/packaging/archive_spec.rb +527 -0
- data/spec/packaging/artifact_namespace_spec.rb +654 -0
- data/spec/packaging/artifact_spec.rb +795 -0
- data/spec/packaging/packaging_helper.rb +63 -0
- data/spec/packaging/packaging_spec.rb +684 -0
- data/spec/sandbox.rb +142 -0
- data/spec/scala/bdd_spec.rb +119 -0
- data/spec/scala/compiler_spec.rb +284 -0
- data/spec/scala/scala.rb +38 -0
- data/spec/scala/tests_spec.rb +261 -0
- data/spec/spec_helpers.rb +340 -0
- data/spec/version_requirement_spec.rb +129 -0
- metadata +383 -0
@@ -0,0 +1,190 @@
|
|
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
|
+
require 'stringio'
|
20
|
+
|
21
|
+
|
22
|
+
module Buildr
|
23
|
+
module Idea #:nodoc:
|
24
|
+
|
25
|
+
include Extension
|
26
|
+
|
27
|
+
first_time do
|
28
|
+
# Global task "idea" generates artifacts for all projects.
|
29
|
+
desc "Generate Idea artifacts for all projects"
|
30
|
+
Project.local_task "idea"=>"artifacts"
|
31
|
+
end
|
32
|
+
|
33
|
+
before_define do |project|
|
34
|
+
project.recursive_task("idea")
|
35
|
+
end
|
36
|
+
|
37
|
+
after_define do |project|
|
38
|
+
idea = project.task("idea")
|
39
|
+
# We need paths relative to the top project's base directory.
|
40
|
+
root_path = lambda { |p| f = lambda { |p| p.parent ? f[p.parent] : p.base_dir }; f[p] }[project]
|
41
|
+
|
42
|
+
# Find a path relative to the project's root directory.
|
43
|
+
relative = lambda { |path| Util.relative_path(path.to_s, project.path_to) }
|
44
|
+
|
45
|
+
m2repo = Buildr::Repositories.instance.local
|
46
|
+
excludes = [ '**/.svn/', '**/CVS/' ].join('|')
|
47
|
+
|
48
|
+
# Only for projects that are packageable.
|
49
|
+
task_name = project.path_to("#{project.name.gsub(':', '-')}.iml")
|
50
|
+
idea.enhance [ file(task_name) ]
|
51
|
+
|
52
|
+
# The only thing we need to look for is a change in the Buildfile.
|
53
|
+
file(task_name=>Buildr.application.buildfile) do |task|
|
54
|
+
info "Writing #{task.name}"
|
55
|
+
|
56
|
+
# Idea handles modules slightly differently if they're WARs
|
57
|
+
idea_types = Hash.new("JAVA_MODULE")
|
58
|
+
idea_types["war"] = "J2EE_WEB_MODULE"
|
59
|
+
|
60
|
+
# Note: Use the test classpath since Eclipse compiles both "main" and "test" classes using the same classpath
|
61
|
+
deps = project.test.compile.dependencies.map(&:to_s) - [ project.compile.target.to_s ]
|
62
|
+
|
63
|
+
# Convert classpath elements into applicable Project objects
|
64
|
+
deps.collect! { |path| Buildr.projects.detect { |prj| prj.packages.detect { |pkg| pkg.to_s == path } } || path }
|
65
|
+
|
66
|
+
# project_libs: artifacts created by other projects
|
67
|
+
project_libs, others = deps.partition { |path| path.is_a?(Project) }
|
68
|
+
|
69
|
+
# Separate artifacts from Maven2 repository
|
70
|
+
m2_libs, others = others.partition { |path| path.to_s.index(m2repo) == 0 }
|
71
|
+
|
72
|
+
# Generated: classpath elements in the project are assumed to be generated
|
73
|
+
generated, libs = others.partition { |path| path.to_s.index(project.path_to.to_s) == 0 }
|
74
|
+
|
75
|
+
# Project type is going to be the first package type
|
76
|
+
if package = project.packages.first
|
77
|
+
File.open(task.name, "w") do |file|
|
78
|
+
xml = Builder::XmlMarkup.new(:target=>file, :indent=>2)
|
79
|
+
|
80
|
+
xml.module(:version=>"4", :relativePaths=>"false", :type=>idea_types[package.type.to_s]) do
|
81
|
+
xml.component :name=>"ModuleRootManager"
|
82
|
+
xml.component "name"=>"NewModuleRootManager", "inherit-compiler-output"=>"false" do
|
83
|
+
has_compile_sources = project.compile.target.to_s.size > 0
|
84
|
+
xml.output :url=>"file://$MODULE_DIR$/#{relative[project.compile.target.to_s]}" if has_compile_sources
|
85
|
+
xml.tag! "exclude-output"
|
86
|
+
|
87
|
+
# TODO project.test.target isn't recognized, what's the proper way to get the test compile path?
|
88
|
+
xml.tag! "output-test", :url=>"file://$MODULE_DIR$/target/test-classes"
|
89
|
+
|
90
|
+
xml.content(:url=>"file://$MODULE_DIR$") do
|
91
|
+
if has_compile_sources
|
92
|
+
srcs = project.compile.sources.map { |src| relative[src.to_s] } + generated.map { |src| relative[src.to_s] }
|
93
|
+
srcs.sort.uniq.each do |path|
|
94
|
+
xml.sourceFolder :url=>"file://$MODULE_DIR$/#{path}", :isTestSource=>"false"
|
95
|
+
end
|
96
|
+
|
97
|
+
test_sources = project.test.compile.sources.map { |src| relative[src.to_s] }
|
98
|
+
test_sources.each do |paths|
|
99
|
+
paths.sort.uniq.each do |path|
|
100
|
+
xml.sourceFolder :url=>"file://$MODULE_DIR$/#{path}", :isTestSource=>"true"
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
104
|
+
[project.resources=>false, project.test.resources=>true].each do |resources, test|
|
105
|
+
resources.each do |path|
|
106
|
+
path[0].sources.each do |srcpath|
|
107
|
+
xml.sourceFolder :url=>"file://#{srcpath}", :isTestSource=>path[1].to_s
|
108
|
+
end
|
109
|
+
end
|
110
|
+
end
|
111
|
+
xml.excludeFolder :url=>"file://$MODULE_DIR$/#{relative[project.compile.target.to_s]}" if has_compile_sources
|
112
|
+
end
|
113
|
+
|
114
|
+
xml.orderEntry :type=>"sourceFolder", :forTests=>"false"
|
115
|
+
xml.orderEntry :type=>"inheritedJdk"
|
116
|
+
|
117
|
+
# Classpath elements from other projects
|
118
|
+
project_libs.map(&:id).sort.uniq.each do |project_id|
|
119
|
+
xml.orderEntry :type=>'module', "module-name"=>project_id
|
120
|
+
end
|
121
|
+
|
122
|
+
# Libraries
|
123
|
+
ext_libs = libs.map {|path| "$MODULE_DIR$/#{path.to_s}" } +
|
124
|
+
m2_libs.map { |path| path.to_s.sub(m2repo, "$M2_REPO$") }
|
125
|
+
ext_libs.each do |path|
|
126
|
+
xml.orderEntry :type=>"module-library" do
|
127
|
+
xml.library do
|
128
|
+
xml.CLASSES do
|
129
|
+
xml.root :url=>"jar://#{path}!/"
|
130
|
+
end
|
131
|
+
xml.JAVADOC
|
132
|
+
xml.SOURCES do
|
133
|
+
xml.root :url=>"jar://#{path.sub(/\.jar$/, "-sources.jar")}!/"
|
134
|
+
end
|
135
|
+
end
|
136
|
+
end
|
137
|
+
end
|
138
|
+
|
139
|
+
xml.orderEntryProperties
|
140
|
+
end
|
141
|
+
end
|
142
|
+
end
|
143
|
+
end
|
144
|
+
end
|
145
|
+
|
146
|
+
# Root project aggregates all the subprojects.
|
147
|
+
if project.parent == nil
|
148
|
+
task_name = project.path_to("#{project.name.gsub(':', '-')}.ipr")
|
149
|
+
idea.enhance [ file(task_name) ]
|
150
|
+
|
151
|
+
file(task_name=>Buildr.application.buildfile) do |task|
|
152
|
+
info "Writing #{task.name}"
|
153
|
+
|
154
|
+
# Generating just the little stanza that chanages from one project to another
|
155
|
+
partial = StringIO.new
|
156
|
+
xml = Builder::XmlMarkup.new(:target=>partial, :indent=>2)
|
157
|
+
xml.component(:name=>"ProjectModuleManager") do
|
158
|
+
xml.modules do
|
159
|
+
project.projects.each do |subp|
|
160
|
+
module_name = subp.name.gsub(":", "-")
|
161
|
+
module_path = subp.name.split(":"); module_path.shift
|
162
|
+
module_path = module_path.join("/")
|
163
|
+
path = "#{module_path}/#{module_name}.iml"
|
164
|
+
xml.module :fileurl=>"file://$PROJECT_DIR$/#{path}", :filepath=>"$PROJECT_DIR$/#{path}"
|
165
|
+
end
|
166
|
+
if package = project.packages.first
|
167
|
+
xml.module :fileurl=>"file://$PROJECT_DIR$/#{project.name}.iml", :filepath=>"$PROJECT_DIR$/#{project.name}.iml"
|
168
|
+
end
|
169
|
+
end
|
170
|
+
end
|
171
|
+
|
172
|
+
# Loading the whole fairly constant crap
|
173
|
+
template_xml = REXML::Document.new(File.open(File.dirname(__FILE__)+"/idea.ipr.template"))
|
174
|
+
include_xml = REXML::Document.new(partial.string)
|
175
|
+
template_xml.root.add_element(include_xml.root)
|
176
|
+
File.open task.name, 'w' do |file|
|
177
|
+
template_xml.write file
|
178
|
+
end
|
179
|
+
end
|
180
|
+
end
|
181
|
+
|
182
|
+
end #after define
|
183
|
+
|
184
|
+
end #module Idea
|
185
|
+
end # module Buildr
|
186
|
+
|
187
|
+
|
188
|
+
class Buildr::Project
|
189
|
+
include Buildr::Idea
|
190
|
+
end
|
@@ -0,0 +1,290 @@
|
|
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 relativePaths="false" version="4">
|
19
|
+
<component name="BuildJarProjectSettings">
|
20
|
+
<option name="BUILD_JARS_ON_MAKE" value="false"/>
|
21
|
+
</component>
|
22
|
+
<component name="CodeStyleProjectProfileManger">
|
23
|
+
<option name="PROJECT_PROFILE"/>
|
24
|
+
<option name="USE_PROJECT_LEVEL_SETTINGS" value="false"/>
|
25
|
+
</component>
|
26
|
+
<component name="CodeStyleSettingsManager">
|
27
|
+
<option name="PER_PROJECT_SETTINGS"/>
|
28
|
+
<option name="USE_PER_PROJECT_SETTINGS" value="false"/>
|
29
|
+
</component>
|
30
|
+
<component name="CompilerConfiguration">
|
31
|
+
<option name="DEFAULT_COMPILER" value="Javac"/>
|
32
|
+
<option name="DEPLOY_AFTER_MAKE" value="0"/>
|
33
|
+
<resourceExtensions>
|
34
|
+
<entry name=".+\.(properties|xml|html|dtd|tld)"/>
|
35
|
+
<entry name=".+\.(gif|png|jpeg|jpg)"/>
|
36
|
+
</resourceExtensions>
|
37
|
+
<wildcardResourcePatterns>
|
38
|
+
<entry name="?*.properties"/>
|
39
|
+
<entry name="?*.xml"/>
|
40
|
+
<entry name="?*.gif"/>
|
41
|
+
<entry name="?*.png"/>
|
42
|
+
<entry name="?*.jpeg"/>
|
43
|
+
<entry name="?*.jpg"/>
|
44
|
+
<entry name="?*.html"/>
|
45
|
+
<entry name="?*.dtd"/>
|
46
|
+
<entry name="?*.tld"/>
|
47
|
+
</wildcardResourcePatterns>
|
48
|
+
</component>
|
49
|
+
<component name="DependenciesAnalyzeManager">
|
50
|
+
<option name="myForwardDirection" value="false"/>
|
51
|
+
</component>
|
52
|
+
<component name="DependencyValidationManager">
|
53
|
+
<option name="SKIP_IMPORT_STATEMENTS" value="false"/>
|
54
|
+
</component>
|
55
|
+
<component name="EclipseCompilerSettings">
|
56
|
+
<option name="DEBUGGING_INFO" value="true"/>
|
57
|
+
<option name="GENERATE_NO_WARNINGS" value="true"/>
|
58
|
+
<option name="DEPRECATION" value="false"/>
|
59
|
+
<option name="ADDITIONAL_OPTIONS_STRING" value=""/>
|
60
|
+
<option name="MAXIMUM_HEAP_SIZE" value="128"/>
|
61
|
+
</component>
|
62
|
+
<component name="EclipseEmbeddedCompilerSettings">
|
63
|
+
<option name="DEBUGGING_INFO" value="true"/>
|
64
|
+
<option name="GENERATE_NO_WARNINGS" value="true"/>
|
65
|
+
<option name="DEPRECATION" value="false"/>
|
66
|
+
<option name="ADDITIONAL_OPTIONS_STRING" value=""/>
|
67
|
+
<option name="MAXIMUM_HEAP_SIZE" value="128"/>
|
68
|
+
</component>
|
69
|
+
<component name="EntryPointsManager">
|
70
|
+
<entry_points version="2.0"/>
|
71
|
+
</component>
|
72
|
+
<component name="IdProvider" IDEtalkID="8CD0EDF2C11753573BC22F6C470A1027"/>
|
73
|
+
<component name="InspectionProjectProfileManager">
|
74
|
+
<option name="PROJECT_PROFILE" value="Project Default"/>
|
75
|
+
<option name="USE_PROJECT_LEVEL_SETTINGS" value="false"/>
|
76
|
+
<scopes/>
|
77
|
+
<profiles>
|
78
|
+
<profile version="1.0" is_locked="false">
|
79
|
+
<option name="myName" value="Project Default"/>
|
80
|
+
<option name="myLocal" value="false"/>
|
81
|
+
</profile>
|
82
|
+
</profiles>
|
83
|
+
<list size="0"/>
|
84
|
+
</component>
|
85
|
+
<component name="JavacSettings">
|
86
|
+
<option name="DEBUGGING_INFO" value="true"/>
|
87
|
+
<option name="GENERATE_NO_WARNINGS" value="false"/>
|
88
|
+
<option name="DEPRECATION" value="true"/>
|
89
|
+
<option name="ADDITIONAL_OPTIONS_STRING" value=""/>
|
90
|
+
<option name="MAXIMUM_HEAP_SIZE" value="128"/>
|
91
|
+
</component>
|
92
|
+
<component name="JavadocGenerationManager">
|
93
|
+
<option name="OUTPUT_DIRECTORY"/>
|
94
|
+
<option name="OPTION_SCOPE" value="protected"/>
|
95
|
+
<option name="OPTION_HIERARCHY" value="true"/>
|
96
|
+
<option name="OPTION_NAVIGATOR" value="true"/>
|
97
|
+
<option name="OPTION_INDEX" value="true"/>
|
98
|
+
<option name="OPTION_SEPARATE_INDEX" value="true"/>
|
99
|
+
<option name="OPTION_DOCUMENT_TAG_USE" value="false"/>
|
100
|
+
<option name="OPTION_DOCUMENT_TAG_AUTHOR" value="false"/>
|
101
|
+
<option name="OPTION_DOCUMENT_TAG_VERSION" value="false"/>
|
102
|
+
<option name="OPTION_DOCUMENT_TAG_DEPRECATED" value="true"/>
|
103
|
+
<option name="OPTION_DEPRECATED_LIST" value="true"/>
|
104
|
+
<option name="OTHER_OPTIONS" value=""/>
|
105
|
+
<option name="HEAP_SIZE"/>
|
106
|
+
<option name="LOCALE"/>
|
107
|
+
<option name="OPEN_IN_BROWSER" value="true"/>
|
108
|
+
</component>
|
109
|
+
<component name="JikesSettings">
|
110
|
+
<option name="JIKES_PATH" value=""/>
|
111
|
+
<option name="DEBUGGING_INFO" value="true"/>
|
112
|
+
<option name="DEPRECATION" value="true"/>
|
113
|
+
<option name="GENERATE_NO_WARNINGS" value="false"/>
|
114
|
+
<option name="IS_EMACS_ERRORS_MODE" value="true"/>
|
115
|
+
<option name="ADDITIONAL_OPTIONS_STRING" value=""/>
|
116
|
+
</component>
|
117
|
+
<component name="Palette2">
|
118
|
+
<group name="Swing">
|
119
|
+
<item class="com.intellij.uiDesigner.HSpacer" tooltip-text="Horizontal Spacer"
|
120
|
+
icon="/com/intellij/uiDesigner/icons/hspacer.png" removable="false" auto-create-binding="false"
|
121
|
+
can-attach-label="false">
|
122
|
+
<default-constraints vsize-policy="1" hsize-policy="6" anchor="0" fill="1"/>
|
123
|
+
</item>
|
124
|
+
<item class="com.intellij.uiDesigner.VSpacer" tooltip-text="Vertical Spacer"
|
125
|
+
icon="/com/intellij/uiDesigner/icons/vspacer.png" removable="false" auto-create-binding="false"
|
126
|
+
can-attach-label="false">
|
127
|
+
<default-constraints vsize-policy="6" hsize-policy="1" anchor="0" fill="2"/>
|
128
|
+
</item>
|
129
|
+
<item class="javax.swing.JPanel" icon="/com/intellij/uiDesigner/icons/panel.png" removable="false"
|
130
|
+
auto-create-binding="false" can-attach-label="false">
|
131
|
+
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3"/>
|
132
|
+
</item>
|
133
|
+
<item class="javax.swing.JScrollPane" icon="/com/intellij/uiDesigner/icons/scrollPane.png" removable="false"
|
134
|
+
auto-create-binding="false" can-attach-label="true">
|
135
|
+
<default-constraints vsize-policy="7" hsize-policy="7" anchor="0" fill="3"/>
|
136
|
+
</item>
|
137
|
+
<item class="javax.swing.JButton" icon="/com/intellij/uiDesigner/icons/button.png" removable="false"
|
138
|
+
auto-create-binding="true" can-attach-label="false">
|
139
|
+
<default-constraints vsize-policy="0" hsize-policy="3" anchor="0" fill="1"/>
|
140
|
+
<initial-values>
|
141
|
+
<property name="text" value="Button"/>
|
142
|
+
</initial-values>
|
143
|
+
</item>
|
144
|
+
<item class="javax.swing.JRadioButton" icon="/com/intellij/uiDesigner/icons/radioButton.png" removable="false"
|
145
|
+
auto-create-binding="true" can-attach-label="false">
|
146
|
+
<default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0"/>
|
147
|
+
<initial-values>
|
148
|
+
<property name="text" value="RadioButton"/>
|
149
|
+
</initial-values>
|
150
|
+
</item>
|
151
|
+
<item class="javax.swing.JCheckBox" icon="/com/intellij/uiDesigner/icons/checkBox.png" removable="false"
|
152
|
+
auto-create-binding="true" can-attach-label="false">
|
153
|
+
<default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0"/>
|
154
|
+
<initial-values>
|
155
|
+
<property name="text" value="CheckBox"/>
|
156
|
+
</initial-values>
|
157
|
+
</item>
|
158
|
+
<item class="javax.swing.JLabel" icon="/com/intellij/uiDesigner/icons/label.png" removable="false"
|
159
|
+
auto-create-binding="false" can-attach-label="false">
|
160
|
+
<default-constraints vsize-policy="0" hsize-policy="0" anchor="8" fill="0"/>
|
161
|
+
<initial-values>
|
162
|
+
<property name="text" value="Label"/>
|
163
|
+
</initial-values>
|
164
|
+
</item>
|
165
|
+
<item class="javax.swing.JTextField" icon="/com/intellij/uiDesigner/icons/textField.png" removable="false"
|
166
|
+
auto-create-binding="true" can-attach-label="true">
|
167
|
+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
|
168
|
+
<preferred-size width="150" height="-1"/>
|
169
|
+
</default-constraints>
|
170
|
+
</item>
|
171
|
+
<item class="javax.swing.JPasswordField" icon="/com/intellij/uiDesigner/icons/passwordField.png" removable="false"
|
172
|
+
auto-create-binding="true" can-attach-label="true">
|
173
|
+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
|
174
|
+
<preferred-size width="150" height="-1"/>
|
175
|
+
</default-constraints>
|
176
|
+
</item>
|
177
|
+
<item class="javax.swing.JFormattedTextField" icon="/com/intellij/uiDesigner/icons/formattedTextField.png"
|
178
|
+
removable="false" auto-create-binding="true" can-attach-label="true">
|
179
|
+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
|
180
|
+
<preferred-size width="150" height="-1"/>
|
181
|
+
</default-constraints>
|
182
|
+
</item>
|
183
|
+
<item class="javax.swing.JTextArea" icon="/com/intellij/uiDesigner/icons/textArea.png" removable="false"
|
184
|
+
auto-create-binding="true" can-attach-label="true">
|
185
|
+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
186
|
+
<preferred-size width="150" height="50"/>
|
187
|
+
</default-constraints>
|
188
|
+
</item>
|
189
|
+
<item class="javax.swing.JTextPane" icon="/com/intellij/uiDesigner/icons/textPane.png" removable="false"
|
190
|
+
auto-create-binding="true" can-attach-label="true">
|
191
|
+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
192
|
+
<preferred-size width="150" height="50"/>
|
193
|
+
</default-constraints>
|
194
|
+
</item>
|
195
|
+
<item class="javax.swing.JEditorPane" icon="/com/intellij/uiDesigner/icons/editorPane.png" removable="false"
|
196
|
+
auto-create-binding="true" can-attach-label="true">
|
197
|
+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
198
|
+
<preferred-size width="150" height="50"/>
|
199
|
+
</default-constraints>
|
200
|
+
</item>
|
201
|
+
<item class="javax.swing.JComboBox" icon="/com/intellij/uiDesigner/icons/comboBox.png" removable="false"
|
202
|
+
auto-create-binding="true" can-attach-label="true">
|
203
|
+
<default-constraints vsize-policy="0" hsize-policy="2" anchor="8" fill="1"/>
|
204
|
+
</item>
|
205
|
+
<item class="javax.swing.JTable" icon="/com/intellij/uiDesigner/icons/table.png" removable="false"
|
206
|
+
auto-create-binding="true" can-attach-label="false">
|
207
|
+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
208
|
+
<preferred-size width="150" height="50"/>
|
209
|
+
</default-constraints>
|
210
|
+
</item>
|
211
|
+
<item class="javax.swing.JList" icon="/com/intellij/uiDesigner/icons/list.png" removable="false"
|
212
|
+
auto-create-binding="true" can-attach-label="false">
|
213
|
+
<default-constraints vsize-policy="6" hsize-policy="2" anchor="0" fill="3">
|
214
|
+
<preferred-size width="150" height="50"/>
|
215
|
+
</default-constraints>
|
216
|
+
</item>
|
217
|
+
<item class="javax.swing.JTree" icon="/com/intellij/uiDesigner/icons/tree.png" removable="false"
|
218
|
+
auto-create-binding="true" can-attach-label="false">
|
219
|
+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
220
|
+
<preferred-size width="150" height="50"/>
|
221
|
+
</default-constraints>
|
222
|
+
</item>
|
223
|
+
<item class="javax.swing.JTabbedPane" icon="/com/intellij/uiDesigner/icons/tabbedPane.png" removable="false"
|
224
|
+
auto-create-binding="true" can-attach-label="false">
|
225
|
+
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3">
|
226
|
+
<preferred-size width="200" height="200"/>
|
227
|
+
</default-constraints>
|
228
|
+
</item>
|
229
|
+
<item class="javax.swing.JSplitPane" icon="/com/intellij/uiDesigner/icons/splitPane.png" removable="false"
|
230
|
+
auto-create-binding="false" can-attach-label="false">
|
231
|
+
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3">
|
232
|
+
<preferred-size width="200" height="200"/>
|
233
|
+
</default-constraints>
|
234
|
+
</item>
|
235
|
+
<item class="javax.swing.JSpinner" icon="/com/intellij/uiDesigner/icons/spinner.png" removable="false"
|
236
|
+
auto-create-binding="true" can-attach-label="true">
|
237
|
+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1"/>
|
238
|
+
</item>
|
239
|
+
<item class="javax.swing.JSlider" icon="/com/intellij/uiDesigner/icons/slider.png" removable="false"
|
240
|
+
auto-create-binding="true" can-attach-label="false">
|
241
|
+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1"/>
|
242
|
+
</item>
|
243
|
+
<item class="javax.swing.JSeparator" icon="/com/intellij/uiDesigner/icons/separator.png" removable="false"
|
244
|
+
auto-create-binding="false" can-attach-label="false">
|
245
|
+
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3"/>
|
246
|
+
</item>
|
247
|
+
<item class="javax.swing.JProgressBar" icon="/com/intellij/uiDesigner/icons/progressbar.png" removable="false"
|
248
|
+
auto-create-binding="true" can-attach-label="false">
|
249
|
+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1"/>
|
250
|
+
</item>
|
251
|
+
<item class="javax.swing.JToolBar" icon="/com/intellij/uiDesigner/icons/toolbar.png" removable="false"
|
252
|
+
auto-create-binding="false" can-attach-label="false">
|
253
|
+
<default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1">
|
254
|
+
<preferred-size width="-1" height="20"/>
|
255
|
+
</default-constraints>
|
256
|
+
</item>
|
257
|
+
<item class="javax.swing.JToolBar$Separator" icon="/com/intellij/uiDesigner/icons/toolbarSeparator.png"
|
258
|
+
removable="false" auto-create-binding="false" can-attach-label="false">
|
259
|
+
<default-constraints vsize-policy="0" hsize-policy="0" anchor="0" fill="1"/>
|
260
|
+
</item>
|
261
|
+
<item class="javax.swing.JScrollBar" icon="/com/intellij/uiDesigner/icons/scrollbar.png" removable="false"
|
262
|
+
auto-create-binding="true" can-attach-label="false">
|
263
|
+
<default-constraints vsize-policy="6" hsize-policy="0" anchor="0" fill="2"/>
|
264
|
+
</item>
|
265
|
+
</group>
|
266
|
+
</component>
|
267
|
+
<component name="ProjectFileVersion" converted="true"/>
|
268
|
+
<component name="ProjectRootManager" version="2" assert-keyword="true" jdk-15="true" project-jdk-name="1.5"
|
269
|
+
project-jdk-type="JavaSDK">
|
270
|
+
<output url="file://$PROJECT_DIR$/out"/>
|
271
|
+
</component>
|
272
|
+
<component name="ResourceManagerContainer">
|
273
|
+
<option name="myResourceBundles">
|
274
|
+
<value>
|
275
|
+
<list size="0"/>
|
276
|
+
</value>
|
277
|
+
</option>
|
278
|
+
</component>
|
279
|
+
<component name="RmicSettings">
|
280
|
+
<option name="IS_EANABLED" value="false"/>
|
281
|
+
<option name="DEBUGGING_INFO" value="true"/>
|
282
|
+
<option name="GENERATE_NO_WARNINGS" value="false"/>
|
283
|
+
<option name="GENERATE_IIOP_STUBS" value="false"/>
|
284
|
+
<option name="ADDITIONAL_OPTIONS_STRING" value=""/>
|
285
|
+
</component>
|
286
|
+
<component name="VcsDirectoryMappings">
|
287
|
+
<mapping directory="" vcs=""/>
|
288
|
+
</component>
|
289
|
+
<component name="WebServicesPlugin" addRequiredLibraries="true"/>
|
290
|
+
</project>
|