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 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377
|
require 'virtus'
# keep things in line with java collections
class Array
def remove( *args )
delete( *args )
end
end
module Maven
module Tools
Base = Virtus.model
module GAV
def self.included( base )
base.attribute :group_id, String
base.attribute :artifact_id, String
base.attribute :version, String
end
end
module GA
def self.included( base )
base.attribute :group_id, String
base.attribute :artifact_id, String
end
end
module SU
def self.included( base )
base.attribute :system, String
base.attribute :url, String
end
end
module NU
def self.included( base )
base.attribute :name, String
base.attribute :url, String
end
end
module INU
def self.included( base )
base.attribute :id, String
base.attribute :name, String
base.attribute :url, String
end
end
class Parent
include Base
include GAV
attribute :relative_path, String
end
class Organization
include Base
include NU
end
class License
include Base
include NU
attribute :distribution, String
attribute :comments, String
end
class Developer
include Base
include INU
attribute :email, String
attribute :organization, String
attribute :organization_url, String
attribute :roles, String
attribute :timezone, String
attribute :properties, Hash
end
class Contributor
include Base
include NU
attribute :email, String
attribute :organization, String
attribute :organization_url, String
attribute :roles, String
attribute :timezone, String
attribute :properties, Hash
end
class MailingList
include Base
attribute :name, String
attribute :subscribe, String
attribute :unsubscribe, String
attribute :post, String
attribute :archive, String
attribute :other_archives, Array[ String ]
def archives=( archives )
self.archive = archives.shift
self.other_archives = archives
end
end
class Prerequisites
include Base
attribute :maven, String
end
class Scm
include Base
attribute :connection, String
attribute :developer_connection, String
attribute :tag, String
attribute :url, String
end
class IssueManagement
include Base
include SU
end
class Notifier
include Base
attribute :type, String
attribute :send_on_error, Boolean
attribute :send_on_failure, Boolean
attribute :send_on_success, Boolean
attribute :send_on_warning, Boolean
attribute :address, String
attribute :configuration, Hash
end
class CiManagement
include Base
include SU
attribute :notifiers, Array[ Notifier ]
end
class Site
include Base
include INU
end
class Relocation
include Base
include GAV
attribute :message, String
end
class RepositoryPolicy
include Base
attribute :enabled, Boolean
attribute :update_policy, String
attribute :checksum_policy, String
end
class Repository
include Base
attribute :releases, RepositoryPolicy
attribute :snapshots, RepositoryPolicy
include INU
attribute :layout, String
end
class PluginRepository < Repository; end
class DeploymentRepository < Repository; end
class DistributionManagement
include Base
attribute :repository, Repository
attribute :snapshot_repository, Repository
attribute :site, Site
attribute :download_url, String
attribute :status, String
attribute :relocation, Relocation
end
class Exclusion
include Base
include GA
end
class Dependency
include Base
include GAV
attribute :type, String
attribute :classifier, String
attribute :scope, String
attribute :system_path, String
attribute :exclusions, Array[ Exclusion ]
attribute :optional, Boolean
# silent default
def type=( t )
if t.to_sym == :jar
@type = nil
else
@type = t
end
end
end
class DependencyManagement
include Base
attribute :dependencies, Array[ Dependency ]
end
class Extension
include Base
include GAV
end
class Resource
include Base
attribute :target_path, String
attribute :filtering, String
attribute :directory, String
attribute :includes, Array[ String ]
attribute :excludes, Array[ String ]
end
class Execution
include Base
attribute :id, String
attribute :phase, String
attribute :goals, Array[ String ]
attribute :inherited, Boolean
attribute :configuration, Hash
end
class Plugin
include Base
include GAV
attribute :extensions, Boolean
attribute :executions, Array[ Execution ]
attribute :dependencies, Array[ Dependency ]
attribute :goals, Array[ String ]
attribute :inherited, Boolean
attribute :configuration, Hash
# silent default
def group_id=( v )
if v.to_s == 'org.apache.maven.plugins'
@group_id = nil
else
@group_id = v
end
end
end
class PluginManagement
include Base
attribute :plugins, Array[ Plugin ]
end
class ReportSet
include Base
attribute :id, String
attribute :reports, Array[ String ]
attribute :inherited, Boolean
attribute :configuration, Hash
end
class ReportPlugin
include Base
include GAV
attribute :report_sets, Array[ ReportSet ]
end
class Reporting
include Base
attribute :exclude_defaults, Boolean
attribute :output_directory, String
attribute :plugins, Array[ ReportPlugin ]
end
class Build
include Base
attribute :source_directory, String
attribute :script_source_directory, String
attribute :test_source_directory, String
attribute :output_directory, String
attribute :test_output_directory, String
attribute :extensions, Array[ Extension ]
attribute :default_goal, String
attribute :resources, Array[ Resource ]
attribute :test_resources, Array[ Resource ]
attribute :directory, String
attribute :final_name, String
attribute :filters, Array[ String ]
attribute :plugin_management, PluginManagement
attribute :plugins, Array[ Plugin ]
end
class ActivationOS
include Base
attribute :name, String
attribute :family, String
attribute :arch, String
attribute :version, String
end
class ActivationProperty
include Base
attribute :name, String
attribute :value, String
end
class ActivationFile
include Base
attribute :missing, String
attribute :exists, String
end
class Activation
include Base
attribute :active_by_default, Boolean
attribute :jdk, String
attribute :os, ActivationOS
attribute :property, ActivationProperty
attribute :file, ActivationFile
end
class Profile
include Base
attribute :id, String
attribute :activation, Activation
attribute :build, Build
attribute :modules, Array[ String ]
attribute :distribution_management, DistributionManagement
attribute :properties, Hash
attribute :dependency_management, DependencyManagement
attribute :dependencies, Array[ Dependency ]
attribute :repositories, Array[ Repository ]
attribute :plugin_repositories, Array[ PluginRepository ]
attribute :reporting, Reporting
end
class Model
include Base
attribute :model_version, String
attribute :parent, Parent
include GAV
attribute :packaging, String
include NU
attribute :description, String
attribute :inception_year, String
attribute :organization, Organization
attribute :licenses, Array[ License ]
attribute :developers, Array[ Developer ]
attribute :contributors, Array[ Contributor ]
attribute :mailing_lists, Array[ MailingList ]
attribute :prerequisites, Prerequisites
attribute :modules, Array[ String ]
attribute :scm, Scm
attribute :issue_management, IssueManagement
attribute :ci_management, CiManagement
attribute :distribution_management, DistributionManagement
attribute :properties, Hash
attribute :dependency_management, DependencyManagement
attribute :dependencies, Array[ Dependency ]
attribute :repositories, Array[ Repository ]
attribute :plugin_repositories, Array[ PluginRepository ]
attribute :build, Build
attribute :reporting, Reporting
attribute :profiles, Array[ Profile ]
end
end
end
|