Changeset 4652


Ignore:
Timestamp:
Nov 15, 2012, 3:04:49 AM (13 years ago)
Author:
Christian Schulte
Message:

o Merged changes up to 4651 from 'trunk' into branch 'jomc-1.x'.

See #1
Closes #20

Location:
jomc/branches/jomc-1.x
Files:
16 edited

Legend:

Unmodified
Added
Removed
  • jomc/branches/jomc-1.x

  • TabularUnified jomc/branches/jomc-1.x/BUILDING.txt

    r4613 r4652  
    77  installed.
    88
    9     o Java Development Kit (JDK), Version 1.6 or higher
     9    o Java Development Kit (JDK), Version 1.7 or higher
    1010
    1111      Please consult the operating system documentation on how to install a Java
     
    7575        <!--                                                                 -->
    7676        <jomc.scm.password>Password</jomc.scm.password>
     77        <!--                                                                 -->
     78        <!--                                                                 -->
     79        <!-- Issue Management System Properties                              -->
     80        <!-- ========================================                        -->
     81        <!--                                                                 -->
     82        <!-- The 'jomc.trac.username' property must be set to the name of    -->
     83        <!-- the user used for authentication with the project issue         -->
     84        <!-- management system.                                              -->
     85        <!--                                                                 -->
     86        <jomc.trac.username>Username</jomc.trac.username>
     87        <!--                                                                 -->
     88        <!-- The 'jomc.trac.password' property must be set to the password   -->
     89        <!-- used for authentication with the project issue management       -->
     90        <!-- system. To avoid storing cleartext passwords, this property     -->
     91        <!-- should be set using the '-D' command line option.               -->
     92        <!--                                                                 -->
     93        <jomc.trac.password>Password</jomc.trac.password>
    7794        <!--                                                                 -->
    7895        <!--                                                                 -->
     
    215232  ---------------------------
    216233
    217     For deploying release artifacts, a server definition needs to be specified
    218     in the local Maven settings.xml file used for authentication with the remote
    219     staging repository.
     234    For deploying releases, various server definitions need to be specified in
     235    the local Maven settings.xml file used for authentication with the remote
     236    staging repository, the remote file release server and the remote XML schema
     237    server.
    220238
    221239    <server>
     
    225243    </server>
    226244
     245    <server>
     246      <id>frs.jomc.org</id>
     247      <username>FRS Username</username>
     248      <password>FRS Password</password>
     249    </server>
     250
     251    <server>
     252      <id>xml.jomc.org</id>
     253      <username>XML Username</username>
     254      <password>XML Password</password>
     255    </server>
     256
    227257    Release artifacts are deployed by executing:
    228258    cmd> mvn -Pjomc-release,jomc.org deploy
     
    236266
    237267    <server>
    238       <id>jomc.org</id>
     268      <id>www.jomc.org</id>
    239269      <username>Username</username>
    240270      <password>Password</password>
     
    252282
    253283    Releases are prepared by executing:
    254     cmd> mvn release:prepare -Pjomc-release,jomc.org
     284    cmd> mvn release:prepare -Pjomc.org
    255285
    256286    Releases are performed by executing:
    257     cmd> mvn release:perform -Darguments="-Pjomc-release,jomc.org"
    258 
     287    cmd> mvn release:perform -Pjomc-release,jomc.org
  • TabularUnified jomc/branches/jomc-1.x/jomc-ant-tasks/BUILDING.txt

    r4613 r4652  
    77  installed.
    88
    9     o Java Development Kit (JDK), Version 1.6 or higher
     9    o Java Development Kit (JDK), Version 1.7 or higher
    1010
    1111      Please consult the operating system documentation on how to install a Java
     
    7575        <!--                                                                 -->
    7676        <jomc.scm.password>Password</jomc.scm.password>
     77        <!--                                                                 -->
     78        <!--                                                                 -->
     79        <!-- Issue Management System Properties                              -->
     80        <!-- ========================================                        -->
     81        <!--                                                                 -->
     82        <!-- The 'jomc.trac.username' property must be set to the name of    -->
     83        <!-- the user used for authentication with the project issue         -->
     84        <!-- management system.                                              -->
     85        <!--                                                                 -->
     86        <jomc.trac.username>Username</jomc.trac.username>
     87        <!--                                                                 -->
     88        <!-- The 'jomc.trac.password' property must be set to the password   -->
     89        <!-- used for authentication with the project issue management       -->
     90        <!-- system. To avoid storing cleartext passwords, this property     -->
     91        <!-- should be set using the '-D' command line option.               -->
     92        <!--                                                                 -->
     93        <jomc.trac.password>Password</jomc.trac.password>
    7794        <!--                                                                 -->
    7895        <!--                                                                 -->
     
    215232  ---------------------------
    216233
    217     For deploying release artifacts, a server definition needs to be specified
    218     in the local Maven settings.xml file used for authentication with the remote
    219     staging repository.
     234    For deploying releases, various server definitions need to be specified in
     235    the local Maven settings.xml file used for authentication with the remote
     236    staging repository, the remote file release server and the remote XML schema
     237    server.
    220238
    221239    <server>
     
    225243    </server>
    226244
     245    <server>
     246      <id>frs.jomc.org</id>
     247      <username>FRS Username</username>
     248      <password>FRS Password</password>
     249    </server>
     250
     251    <server>
     252      <id>xml.jomc.org</id>
     253      <username>XML Username</username>
     254      <password>XML Password</password>
     255    </server>
     256
    227257    Release artifacts are deployed by executing:
    228258    cmd> mvn -Pjomc-release,jomc.org deploy
     
    236266
    237267    <server>
    238       <id>jomc.org</id>
     268      <id>www.jomc.org</id>
    239269      <username>Username</username>
    240270      <password>Password</password>
     
    252282
    253283    Releases are prepared by executing:
    254     cmd> mvn release:prepare -Pjomc-release,jomc.org
     284    cmd> mvn release:prepare -Pjomc.org
    255285
    256286    Releases are performed by executing:
    257     cmd> mvn release:perform -Darguments="-Pjomc-release,jomc.org"
    258 
     287    cmd> mvn release:perform -Pjomc-release,jomc.org
  • TabularUnified jomc/branches/jomc-1.x/jomc-api/BUILDING.txt

    r4613 r4652  
    77  installed.
    88
    9     o Java Development Kit (JDK), Version 1.6 or higher
     9    o Java Development Kit (JDK), Version 1.7 or higher
    1010
    1111      Please consult the operating system documentation on how to install a Java
     
    7575        <!--                                                                 -->
    7676        <jomc.scm.password>Password</jomc.scm.password>
     77        <!--                                                                 -->
     78        <!--                                                                 -->
     79        <!-- Issue Management System Properties                              -->
     80        <!-- ========================================                        -->
     81        <!--                                                                 -->
     82        <!-- The 'jomc.trac.username' property must be set to the name of    -->
     83        <!-- the user used for authentication with the project issue         -->
     84        <!-- management system.                                              -->
     85        <!--                                                                 -->
     86        <jomc.trac.username>Username</jomc.trac.username>
     87        <!--                                                                 -->
     88        <!-- The 'jomc.trac.password' property must be set to the password   -->
     89        <!-- used for authentication with the project issue management       -->
     90        <!-- system. To avoid storing cleartext passwords, this property     -->
     91        <!-- should be set using the '-D' command line option.               -->
     92        <!--                                                                 -->
     93        <jomc.trac.password>Password</jomc.trac.password>
    7794        <!--                                                                 -->
    7895        <!--                                                                 -->
     
    215232  ---------------------------
    216233
    217     For deploying release artifacts, a server definition needs to be specified
    218     in the local Maven settings.xml file used for authentication with the remote
    219     staging repository.
     234    For deploying releases, various server definitions need to be specified in
     235    the local Maven settings.xml file used for authentication with the remote
     236    staging repository, the remote file release server and the remote XML schema
     237    server.
    220238
    221239    <server>
     
    225243    </server>
    226244
     245    <server>
     246      <id>frs.jomc.org</id>
     247      <username>FRS Username</username>
     248      <password>FRS Password</password>
     249    </server>
     250
     251    <server>
     252      <id>xml.jomc.org</id>
     253      <username>XML Username</username>
     254      <password>XML Password</password>
     255    </server>
     256
    227257    Release artifacts are deployed by executing:
    228258    cmd> mvn -Pjomc-release,jomc.org deploy
     
    236266
    237267    <server>
    238       <id>jomc.org</id>
     268      <id>www.jomc.org</id>
    239269      <username>Username</username>
    240270      <password>Password</password>
     
    252282
    253283    Releases are prepared by executing:
    254     cmd> mvn release:prepare -Pjomc-release,jomc.org
     284    cmd> mvn release:prepare -Pjomc.org
    255285
    256286    Releases are performed by executing:
    257     cmd> mvn release:perform -Darguments="-Pjomc-release,jomc.org"
    258 
     287    cmd> mvn release:perform -Pjomc-release,jomc.org
  • TabularUnified jomc/branches/jomc-1.x/jomc-cli/BUILDING.txt

    r4613 r4652  
    77  installed.
    88
    9     o Java Development Kit (JDK), Version 1.6 or higher
     9    o Java Development Kit (JDK), Version 1.7 or higher
    1010
    1111      Please consult the operating system documentation on how to install a Java
     
    7575        <!--                                                                 -->
    7676        <jomc.scm.password>Password</jomc.scm.password>
     77        <!--                                                                 -->
     78        <!--                                                                 -->
     79        <!-- Issue Management System Properties                              -->
     80        <!-- ========================================                        -->
     81        <!--                                                                 -->
     82        <!-- The 'jomc.trac.username' property must be set to the name of    -->
     83        <!-- the user used for authentication with the project issue         -->
     84        <!-- management system.                                              -->
     85        <!--                                                                 -->
     86        <jomc.trac.username>Username</jomc.trac.username>
     87        <!--                                                                 -->
     88        <!-- The 'jomc.trac.password' property must be set to the password   -->
     89        <!-- used for authentication with the project issue management       -->
     90        <!-- system. To avoid storing cleartext passwords, this property     -->
     91        <!-- should be set using the '-D' command line option.               -->
     92        <!--                                                                 -->
     93        <jomc.trac.password>Password</jomc.trac.password>
    7794        <!--                                                                 -->
    7895        <!--                                                                 -->
     
    215232  ---------------------------
    216233
    217     For deploying release artifacts, a server definition needs to be specified
    218     in the local Maven settings.xml file used for authentication with the remote
    219     staging repository.
     234    For deploying releases, various server definitions need to be specified in
     235    the local Maven settings.xml file used for authentication with the remote
     236    staging repository, the remote file release server and the remote XML schema
     237    server.
    220238
    221239    <server>
     
    225243    </server>
    226244
     245    <server>
     246      <id>frs.jomc.org</id>
     247      <username>FRS Username</username>
     248      <password>FRS Password</password>
     249    </server>
     250
     251    <server>
     252      <id>xml.jomc.org</id>
     253      <username>XML Username</username>
     254      <password>XML Password</password>
     255    </server>
     256
    227257    Release artifacts are deployed by executing:
    228258    cmd> mvn -Pjomc-release,jomc.org deploy
     
    236266
    237267    <server>
    238       <id>jomc.org</id>
     268      <id>www.jomc.org</id>
    239269      <username>Username</username>
    240270      <password>Password</password>
     
    252282
    253283    Releases are prepared by executing:
    254     cmd> mvn release:prepare -Pjomc-release,jomc.org
     284    cmd> mvn release:prepare -Pjomc.org
    255285
    256286    Releases are performed by executing:
    257     cmd> mvn release:perform -Darguments="-Pjomc-release,jomc.org"
    258 
     287    cmd> mvn release:perform -Pjomc-release,jomc.org
  • TabularUnified jomc/branches/jomc-1.x/jomc-model/BUILDING.txt

    r4613 r4652  
    77  installed.
    88
    9     o Java Development Kit (JDK), Version 1.6 or higher
     9    o Java Development Kit (JDK), Version 1.7 or higher
    1010
    1111      Please consult the operating system documentation on how to install a Java
     
    7575        <!--                                                                 -->
    7676        <jomc.scm.password>Password</jomc.scm.password>
     77        <!--                                                                 -->
     78        <!--                                                                 -->
     79        <!-- Issue Management System Properties                              -->
     80        <!-- ========================================                        -->
     81        <!--                                                                 -->
     82        <!-- The 'jomc.trac.username' property must be set to the name of    -->
     83        <!-- the user used for authentication with the project issue         -->
     84        <!-- management system.                                              -->
     85        <!--                                                                 -->
     86        <jomc.trac.username>Username</jomc.trac.username>
     87        <!--                                                                 -->
     88        <!-- The 'jomc.trac.password' property must be set to the password   -->
     89        <!-- used for authentication with the project issue management       -->
     90        <!-- system. To avoid storing cleartext passwords, this property     -->
     91        <!-- should be set using the '-D' command line option.               -->
     92        <!--                                                                 -->
     93        <jomc.trac.password>Password</jomc.trac.password>
    7794        <!--                                                                 -->
    7895        <!--                                                                 -->
     
    215232  ---------------------------
    216233
    217     For deploying release artifacts, a server definition needs to be specified
    218     in the local Maven settings.xml file used for authentication with the remote
    219     staging repository.
     234    For deploying releases, various server definitions need to be specified in
     235    the local Maven settings.xml file used for authentication with the remote
     236    staging repository, the remote file release server and the remote XML schema
     237    server.
    220238
    221239    <server>
     
    225243    </server>
    226244
     245    <server>
     246      <id>frs.jomc.org</id>
     247      <username>FRS Username</username>
     248      <password>FRS Password</password>
     249    </server>
     250
     251    <server>
     252      <id>xml.jomc.org</id>
     253      <username>XML Username</username>
     254      <password>XML Password</password>
     255    </server>
     256
    227257    Release artifacts are deployed by executing:
    228258    cmd> mvn -Pjomc-release,jomc.org deploy
     
    236266
    237267    <server>
    238       <id>jomc.org</id>
     268      <id>www.jomc.org</id>
    239269      <username>Username</username>
    240270      <password>Password</password>
     
    252282
    253283    Releases are prepared by executing:
    254     cmd> mvn release:prepare -Pjomc-release,jomc.org
     284    cmd> mvn release:prepare -Pjomc.org
    255285
    256286    Releases are performed by executing:
    257     cmd> mvn release:perform -Darguments="-Pjomc-release,jomc.org"
    258 
     287    cmd> mvn release:perform -Pjomc-release,jomc.org
  • TabularUnified jomc/branches/jomc-1.x/jomc-model/pom.xml

    r4647 r4652  
    233233                <fromDir>${basedir}/src/main/schemas</fromDir>
    234234                <includes>*.xsd</includes>
    235                 <serverId>${jomc.xsd.distribution.id}</serverId>
     235                <serverId>${jomc.xml.distribution.id}</serverId>
    236236                <toDir>model</toDir>
    237                 <url>${jomc.xsd.distribution.url}</url>
     237                <url>${jomc.xml.distribution.url}</url>
    238238              </configuration>
    239239            </execution>
  • TabularUnified jomc/branches/jomc-1.x/jomc-modlet/BUILDING.txt

    r4613 r4652  
    77  installed.
    88
    9     o Java Development Kit (JDK), Version 1.6 or higher
     9    o Java Development Kit (JDK), Version 1.7 or higher
    1010
    1111      Please consult the operating system documentation on how to install a Java
     
    7575        <!--                                                                 -->
    7676        <jomc.scm.password>Password</jomc.scm.password>
     77        <!--                                                                 -->
     78        <!--                                                                 -->
     79        <!-- Issue Management System Properties                              -->
     80        <!-- ========================================                        -->
     81        <!--                                                                 -->
     82        <!-- The 'jomc.trac.username' property must be set to the name of    -->
     83        <!-- the user used for authentication with the project issue         -->
     84        <!-- management system.                                              -->
     85        <!--                                                                 -->
     86        <jomc.trac.username>Username</jomc.trac.username>
     87        <!--                                                                 -->
     88        <!-- The 'jomc.trac.password' property must be set to the password   -->
     89        <!-- used for authentication with the project issue management       -->
     90        <!-- system. To avoid storing cleartext passwords, this property     -->
     91        <!-- should be set using the '-D' command line option.               -->
     92        <!--                                                                 -->
     93        <jomc.trac.password>Password</jomc.trac.password>
    7794        <!--                                                                 -->
    7895        <!--                                                                 -->
     
    215232  ---------------------------
    216233
    217     For deploying release artifacts, a server definition needs to be specified
    218     in the local Maven settings.xml file used for authentication with the remote
    219     staging repository.
     234    For deploying releases, various server definitions need to be specified in
     235    the local Maven settings.xml file used for authentication with the remote
     236    staging repository, the remote file release server and the remote XML schema
     237    server.
    220238
    221239    <server>
     
    225243    </server>
    226244
     245    <server>
     246      <id>frs.jomc.org</id>
     247      <username>FRS Username</username>
     248      <password>FRS Password</password>
     249    </server>
     250
     251    <server>
     252      <id>xml.jomc.org</id>
     253      <username>XML Username</username>
     254      <password>XML Password</password>
     255    </server>
     256
    227257    Release artifacts are deployed by executing:
    228258    cmd> mvn -Pjomc-release,jomc.org deploy
     
    236266
    237267    <server>
    238       <id>jomc.org</id>
     268      <id>www.jomc.org</id>
    239269      <username>Username</username>
    240270      <password>Password</password>
     
    252282
    253283    Releases are prepared by executing:
    254     cmd> mvn release:prepare -Pjomc-release,jomc.org
     284    cmd> mvn release:prepare -Pjomc.org
    255285
    256286    Releases are performed by executing:
    257     cmd> mvn release:perform -Darguments="-Pjomc-release,jomc.org"
    258 
     287    cmd> mvn release:perform -Pjomc-release,jomc.org
  • TabularUnified jomc/branches/jomc-1.x/jomc-modlet/pom.xml

    r4647 r4652  
    211211                <fromDir>${basedir}/src/main/schemas</fromDir>
    212212                <includes>*.xsd</includes>
    213                 <serverId>${jomc.xsd.distribution.id}</serverId>
     213                <serverId>${jomc.xml.distribution.id}</serverId>
    214214                <toDir>modlet</toDir>
    215                 <url>${jomc.xsd.distribution.url}</url>
     215                <url>${jomc.xml.distribution.url}</url>
    216216              </configuration>
    217217            </execution>
  • TabularUnified jomc/branches/jomc-1.x/jomc-ri/BUILDING.txt

    r4613 r4652  
    77  installed.
    88
    9     o Java Development Kit (JDK), Version 1.6 or higher
     9    o Java Development Kit (JDK), Version 1.7 or higher
    1010
    1111      Please consult the operating system documentation on how to install a Java
     
    7575        <!--                                                                 -->
    7676        <jomc.scm.password>Password</jomc.scm.password>
     77        <!--                                                                 -->
     78        <!--                                                                 -->
     79        <!-- Issue Management System Properties                              -->
     80        <!-- ========================================                        -->
     81        <!--                                                                 -->
     82        <!-- The 'jomc.trac.username' property must be set to the name of    -->
     83        <!-- the user used for authentication with the project issue         -->
     84        <!-- management system.                                              -->
     85        <!--                                                                 -->
     86        <jomc.trac.username>Username</jomc.trac.username>
     87        <!--                                                                 -->
     88        <!-- The 'jomc.trac.password' property must be set to the password   -->
     89        <!-- used for authentication with the project issue management       -->
     90        <!-- system. To avoid storing cleartext passwords, this property     -->
     91        <!-- should be set using the '-D' command line option.               -->
     92        <!--                                                                 -->
     93        <jomc.trac.password>Password</jomc.trac.password>
    7794        <!--                                                                 -->
    7895        <!--                                                                 -->
     
    215232  ---------------------------
    216233
    217     For deploying release artifacts, a server definition needs to be specified
    218     in the local Maven settings.xml file used for authentication with the remote
    219     staging repository.
     234    For deploying releases, various server definitions need to be specified in
     235    the local Maven settings.xml file used for authentication with the remote
     236    staging repository, the remote file release server and the remote XML schema
     237    server.
    220238
    221239    <server>
     
    225243    </server>
    226244
     245    <server>
     246      <id>frs.jomc.org</id>
     247      <username>FRS Username</username>
     248      <password>FRS Password</password>
     249    </server>
     250
     251    <server>
     252      <id>xml.jomc.org</id>
     253      <username>XML Username</username>
     254      <password>XML Password</password>
     255    </server>
     256
    227257    Release artifacts are deployed by executing:
    228258    cmd> mvn -Pjomc-release,jomc.org deploy
     
    236266
    237267    <server>
    238       <id>jomc.org</id>
     268      <id>www.jomc.org</id>
    239269      <username>Username</username>
    240270      <password>Password</password>
     
    252282
    253283    Releases are prepared by executing:
    254     cmd> mvn release:prepare -Pjomc-release,jomc.org
     284    cmd> mvn release:prepare -Pjomc.org
    255285
    256286    Releases are performed by executing:
    257     cmd> mvn release:perform -Darguments="-Pjomc-release,jomc.org"
    258 
     287    cmd> mvn release:perform -Pjomc-release,jomc.org
  • TabularUnified jomc/branches/jomc-1.x/jomc-spi/BUILDING.txt

    r4613 r4652  
    77  installed.
    88
    9     o Java Development Kit (JDK), Version 1.6 or higher
     9    o Java Development Kit (JDK), Version 1.7 or higher
    1010
    1111      Please consult the operating system documentation on how to install a Java
     
    7575        <!--                                                                 -->
    7676        <jomc.scm.password>Password</jomc.scm.password>
     77        <!--                                                                 -->
     78        <!--                                                                 -->
     79        <!-- Issue Management System Properties                              -->
     80        <!-- ========================================                        -->
     81        <!--                                                                 -->
     82        <!-- The 'jomc.trac.username' property must be set to the name of    -->
     83        <!-- the user used for authentication with the project issue         -->
     84        <!-- management system.                                              -->
     85        <!--                                                                 -->
     86        <jomc.trac.username>Username</jomc.trac.username>
     87        <!--                                                                 -->
     88        <!-- The 'jomc.trac.password' property must be set to the password   -->
     89        <!-- used for authentication with the project issue management       -->
     90        <!-- system. To avoid storing cleartext passwords, this property     -->
     91        <!-- should be set using the '-D' command line option.               -->
     92        <!--                                                                 -->
     93        <jomc.trac.password>Password</jomc.trac.password>
    7794        <!--                                                                 -->
    7895        <!--                                                                 -->
     
    215232  ---------------------------
    216233
    217     For deploying release artifacts, a server definition needs to be specified
    218     in the local Maven settings.xml file used for authentication with the remote
    219     staging repository.
     234    For deploying releases, various server definitions need to be specified in
     235    the local Maven settings.xml file used for authentication with the remote
     236    staging repository, the remote file release server and the remote XML schema
     237    server.
    220238
    221239    <server>
     
    225243    </server>
    226244
     245    <server>
     246      <id>frs.jomc.org</id>
     247      <username>FRS Username</username>
     248      <password>FRS Password</password>
     249    </server>
     250
     251    <server>
     252      <id>xml.jomc.org</id>
     253      <username>XML Username</username>
     254      <password>XML Password</password>
     255    </server>
     256
    227257    Release artifacts are deployed by executing:
    228258    cmd> mvn -Pjomc-release,jomc.org deploy
     
    236266
    237267    <server>
    238       <id>jomc.org</id>
     268      <id>www.jomc.org</id>
    239269      <username>Username</username>
    240270      <password>Password</password>
     
    252282
    253283    Releases are prepared by executing:
    254     cmd> mvn release:prepare -Pjomc-release,jomc.org
     284    cmd> mvn release:prepare -Pjomc.org
    255285
    256286    Releases are performed by executing:
    257     cmd> mvn release:perform -Darguments="-Pjomc-release,jomc.org"
    258 
     287    cmd> mvn release:perform -Pjomc-release,jomc.org
  • TabularUnified jomc/branches/jomc-1.x/jomc-tools/BUILDING.txt

    r4613 r4652  
    77  installed.
    88
    9     o Java Development Kit (JDK), Version 1.6 or higher
     9    o Java Development Kit (JDK), Version 1.7 or higher
    1010
    1111      Please consult the operating system documentation on how to install a Java
     
    7575        <!--                                                                 -->
    7676        <jomc.scm.password>Password</jomc.scm.password>
     77        <!--                                                                 -->
     78        <!--                                                                 -->
     79        <!-- Issue Management System Properties                              -->
     80        <!-- ========================================                        -->
     81        <!--                                                                 -->
     82        <!-- The 'jomc.trac.username' property must be set to the name of    -->
     83        <!-- the user used for authentication with the project issue         -->
     84        <!-- management system.                                              -->
     85        <!--                                                                 -->
     86        <jomc.trac.username>Username</jomc.trac.username>
     87        <!--                                                                 -->
     88        <!-- The 'jomc.trac.password' property must be set to the password   -->
     89        <!-- used for authentication with the project issue management       -->
     90        <!-- system. To avoid storing cleartext passwords, this property     -->
     91        <!-- should be set using the '-D' command line option.               -->
     92        <!--                                                                 -->
     93        <jomc.trac.password>Password</jomc.trac.password>
    7794        <!--                                                                 -->
    7895        <!--                                                                 -->
     
    215232  ---------------------------
    216233
    217     For deploying release artifacts, a server definition needs to be specified
    218     in the local Maven settings.xml file used for authentication with the remote
    219     staging repository.
     234    For deploying releases, various server definitions need to be specified in
     235    the local Maven settings.xml file used for authentication with the remote
     236    staging repository, the remote file release server and the remote XML schema
     237    server.
    220238
    221239    <server>
     
    225243    </server>
    226244
     245    <server>
     246      <id>frs.jomc.org</id>
     247      <username>FRS Username</username>
     248      <password>FRS Password</password>
     249    </server>
     250
     251    <server>
     252      <id>xml.jomc.org</id>
     253      <username>XML Username</username>
     254      <password>XML Password</password>
     255    </server>
     256
    227257    Release artifacts are deployed by executing:
    228258    cmd> mvn -Pjomc-release,jomc.org deploy
     
    236266
    237267    <server>
    238       <id>jomc.org</id>
     268      <id>www.jomc.org</id>
    239269      <username>Username</username>
    240270      <password>Password</password>
     
    252282
    253283    Releases are prepared by executing:
    254     cmd> mvn release:prepare -Pjomc-release,jomc.org
     284    cmd> mvn release:prepare -Pjomc.org
    255285
    256286    Releases are performed by executing:
    257     cmd> mvn release:perform -Darguments="-Pjomc-release,jomc.org"
    258 
     287    cmd> mvn release:perform -Pjomc-release,jomc.org
  • TabularUnified jomc/branches/jomc-1.x/jomc-tools/pom.xml

    r4647 r4652  
    255255                <fromDir>${basedir}/src/main/schemas</fromDir>
    256256                <includes>*.xsd</includes>
    257                 <serverId>${jomc.xsd.distribution.id}</serverId>
     257                <serverId>${jomc.xml.distribution.id}</serverId>
    258258                <toDir>model</toDir>
    259                 <url>${jomc.xsd.distribution.url}/tools</url>
     259                <url>${jomc.xml.distribution.url}/tools</url>
    260260              </configuration>
    261261            </execution>
  • TabularUnified jomc/branches/jomc-1.x/jomc-util/BUILDING.txt

    r4613 r4652  
    77  installed.
    88
    9     o Java Development Kit (JDK), Version 1.6 or higher
     9    o Java Development Kit (JDK), Version 1.7 or higher
    1010
    1111      Please consult the operating system documentation on how to install a Java
     
    7575        <!--                                                                 -->
    7676        <jomc.scm.password>Password</jomc.scm.password>
     77        <!--                                                                 -->
     78        <!--                                                                 -->
     79        <!-- Issue Management System Properties                              -->
     80        <!-- ========================================                        -->
     81        <!--                                                                 -->
     82        <!-- The 'jomc.trac.username' property must be set to the name of    -->
     83        <!-- the user used for authentication with the project issue         -->
     84        <!-- management system.                                              -->
     85        <!--                                                                 -->
     86        <jomc.trac.username>Username</jomc.trac.username>
     87        <!--                                                                 -->
     88        <!-- The 'jomc.trac.password' property must be set to the password   -->
     89        <!-- used for authentication with the project issue management       -->
     90        <!-- system. To avoid storing cleartext passwords, this property     -->
     91        <!-- should be set using the '-D' command line option.               -->
     92        <!--                                                                 -->
     93        <jomc.trac.password>Password</jomc.trac.password>
    7794        <!--                                                                 -->
    7895        <!--                                                                 -->
     
    215232  ---------------------------
    216233
    217     For deploying release artifacts, a server definition needs to be specified
    218     in the local Maven settings.xml file used for authentication with the remote
    219     staging repository.
     234    For deploying releases, various server definitions need to be specified in
     235    the local Maven settings.xml file used for authentication with the remote
     236    staging repository, the remote file release server and the remote XML schema
     237    server.
    220238
    221239    <server>
     
    225243    </server>
    226244
     245    <server>
     246      <id>frs.jomc.org</id>
     247      <username>FRS Username</username>
     248      <password>FRS Password</password>
     249    </server>
     250
     251    <server>
     252      <id>xml.jomc.org</id>
     253      <username>XML Username</username>
     254      <password>XML Password</password>
     255    </server>
     256
    227257    Release artifacts are deployed by executing:
    228258    cmd> mvn -Pjomc-release,jomc.org deploy
     
    236266
    237267    <server>
    238       <id>jomc.org</id>
     268      <id>www.jomc.org</id>
    239269      <username>Username</username>
    240270      <password>Password</password>
     
    252282
    253283    Releases are prepared by executing:
    254     cmd> mvn release:prepare -Pjomc-release,jomc.org
     284    cmd> mvn release:prepare -Pjomc.org
    255285
    256286    Releases are performed by executing:
    257     cmd> mvn release:perform -Darguments="-Pjomc-release,jomc.org"
    258 
     287    cmd> mvn release:perform -Pjomc-release,jomc.org
  • TabularUnified jomc/branches/jomc-1.x/maven-jomc-plugin/BUILDING.txt

    r4613 r4652  
    77  installed.
    88
    9     o Java Development Kit (JDK), Version 1.6 or higher
     9    o Java Development Kit (JDK), Version 1.7 or higher
    1010
    1111      Please consult the operating system documentation on how to install a Java
     
    7575        <!--                                                                 -->
    7676        <jomc.scm.password>Password</jomc.scm.password>
     77        <!--                                                                 -->
     78        <!--                                                                 -->
     79        <!-- Issue Management System Properties                              -->
     80        <!-- ========================================                        -->
     81        <!--                                                                 -->
     82        <!-- The 'jomc.trac.username' property must be set to the name of    -->
     83        <!-- the user used for authentication with the project issue         -->
     84        <!-- management system.                                              -->
     85        <!--                                                                 -->
     86        <jomc.trac.username>Username</jomc.trac.username>
     87        <!--                                                                 -->
     88        <!-- The 'jomc.trac.password' property must be set to the password   -->
     89        <!-- used for authentication with the project issue management       -->
     90        <!-- system. To avoid storing cleartext passwords, this property     -->
     91        <!-- should be set using the '-D' command line option.               -->
     92        <!--                                                                 -->
     93        <jomc.trac.password>Password</jomc.trac.password>
    7794        <!--                                                                 -->
    7895        <!--                                                                 -->
     
    215232  ---------------------------
    216233
    217     For deploying release artifacts, a server definition needs to be specified
    218     in the local Maven settings.xml file used for authentication with the remote
    219     staging repository.
     234    For deploying releases, various server definitions need to be specified in
     235    the local Maven settings.xml file used for authentication with the remote
     236    staging repository, the remote file release server and the remote XML schema
     237    server.
    220238
    221239    <server>
     
    225243    </server>
    226244
     245    <server>
     246      <id>frs.jomc.org</id>
     247      <username>FRS Username</username>
     248      <password>FRS Password</password>
     249    </server>
     250
     251    <server>
     252      <id>xml.jomc.org</id>
     253      <username>XML Username</username>
     254      <password>XML Password</password>
     255    </server>
     256
    227257    Release artifacts are deployed by executing:
    228258    cmd> mvn -Pjomc-release,jomc.org deploy
     
    236266
    237267    <server>
    238       <id>jomc.org</id>
     268      <id>www.jomc.org</id>
    239269      <username>Username</username>
    240270      <password>Password</password>
     
    252282
    253283    Releases are prepared by executing:
    254     cmd> mvn release:prepare -Pjomc-release,jomc.org
     284    cmd> mvn release:prepare -Pjomc.org
    255285
    256286    Releases are performed by executing:
    257     cmd> mvn release:perform -Darguments="-Pjomc-release,jomc.org"
    258 
     287    cmd> mvn release:perform -Pjomc-release,jomc.org
  • TabularUnified jomc/branches/jomc-1.x/pom.xml

    r4647 r4652  
    8484          <artifactId>maven-compiler-plugin</artifactId>
    8585          <version>${maven-compiler-plugin.artifact.version}</version>
    86           <configuration>
    87             <optimize>true</optimize>
    88             <showDeprecation>true</showDeprecation>
    89             <showWarnings>true</showWarnings>
    90             <source>1.5</source>
    91             <target>1.5</target>
    92           </configuration>
    9386        </plugin>
    9487        <plugin>
     
    218211                  <linksource>true</linksource>
    219212                  <serialwarn>true</serialwarn>
    220                   <source>1.5</source>
     213                  <source>${maven.compiler.source}</source>
    221214                  <doctitle>${project.name} ${project.version}</doctitle>
    222215                  <testDoctitle>${project.name} Tests ${project.version}</testDoctitle>
     
    244237                    </tagletArtifact>
    245238                  </tagletArtifacts>
     239                  <additionalJOption>${maven.javadoc.additionalJOption}</additionalJOption>
    246240                  <additionalparam>-inferrel -inferdep -hide java.* -collpackages java.util.* -qualify -postfixpackage -nodefontsize 10 -nodefontpackagesize 8 -outputencoding ${project.reporting.outputEncoding} -inferdepvis protected</additionalparam>
    247241                  <groups>
     
    393387                <configuration>
    394388                  <format>none</format>
    395                   <targetJdk>1.5</targetJdk>
     389                  <targetJdk>${maven.compiler.target}</targetJdk>
    396390                </configuration>
    397391              </reportPlugin>
     
    453447                </reportSets>
    454448                <configuration>
    455                   <maxHeap>256</maxHeap>
     449                  <jvmArgs>${mojo.findbugs.jvmArgs}</jvmArgs>
    456450                </configuration>
    457451              </reportPlugin>
     
    554548            <useReleaseProfile>false</useReleaseProfile>
    555549            <releaseProfiles>jomc-release</releaseProfiles>
     550            <remoteTagging>false</remoteTagging>
     551            <suppressCommitBeforeTag>true</suppressCommitBeforeTag>
    556552          </configuration>
    557553        </plugin>
     
    586582            </excludeClassifiers>
    587583            <arguments>
     584              <argument>-J-client</argument>
     585              <argument>-J-Dfile.encoding=${file.encoding}</argument>
     586              <argument>-J-Djsse.enableSNIExtension=false</argument>
    588587              <argument>-digestalg</argument>
    589588              <argument>SHA-256</argument>
     
    621620          <version>${surefire.version}</version>
    622621          <configuration>
    623             <argLine>-client -Xmx256m</argLine>
     622            <argLine>${maven.surefire.argLine}</argLine>
    624623            <forkMode>once</forkMode>
    625624            <redirectTestOutputToFile>true</redirectTestOutputToFile>
     
    658657            <linksource>true</linksource>
    659658            <serialwarn>true</serialwarn>
    660             <source>1.5</source>
     659            <source>${maven.compiler.source}</source>
    661660            <doctitle>${project.name} ${project.version}</doctitle>
    662661            <testDoctitle>${project.name} Tests ${project.version}</testDoctitle>
     
    766765              </tagletArtifact>
    767766            </tagletArtifacts>
     767            <additionalJOption>${maven.javadoc.additionalJOption}</additionalJOption>
    768768            <additionalparam>-inferrel -inferdep -hide java.* -collpackages java.util.* -qualify -postfixpackage -nodefontsize 10 -nodefontpackagesize 8 -outputencoding ${project.reporting.outputEncoding} -inferdepvis protected</additionalparam>
    769769            <archive>
     
    925925          <version>${maven-pmd-plugin.artifact.version}</version>
    926926          <configuration>
    927             <targetJdk>1.5</targetJdk>
     927            <targetJdk>${maven.compiler.target}</targetJdk>
    928928          </configuration>
    929929        </plugin>
     
    10311031          <version>${findbugs-maven-plugin.artifact.version}</version>
    10321032          <configuration>
    1033             <maxHeap>256</maxHeap>
     1033            <jvmArgs>${mojo.findbugs.jvmArgs}</jvmArgs>
    10341034          </configuration>
    10351035        </plugin>
     
    22692269  </profiles>
    22702270  <properties>
    2271     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    2272     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    2273     <xjcOutputDirectory>${project.build.directory}/generated-sources/jaxb</xjcOutputDirectory>
    2274     <xjcTestOutputDirectory>${project.build.directory}/generated-test-sources/jaxb</xjcTestOutputDirectory>
    2275     <!--
    2276     Netbeans IDE earlier than 7.1: http://netbeans.org/bugzilla/show_bug.cgi?id=187595
    2277     <xjcTestOutputDirectory>${project.build.directory}/generated-sources/jaxb-test</xjcTestOutputDirectory>
    2278     -->
    2279     <javaccOutputDirectory>${project.build.directory}/generated-sources/javacc</javaccOutputDirectory>
    2280     <remoteResourcesOutputDirectory>${project.build.directory}/maven-shared-archive-resources</remoteResourcesOutputDirectory>
    2281     <assembly.useJvmChmod>true</assembly.useJvmChmod>
    2282     <dependency.useJvmChmod>true</dependency.useJvmChmod>
     2271    <!-- Artifact versions. -->
     2272    <animal-sniffer.version>1.9</animal-sniffer.version>
     2273    <surefire.version>2.12.4</surefire.version>
     2274    <plugintools.version>2.9</plugintools.version> <!-- See http://jira.codehaus.org/browse/MNG-3762 -->
     2275    <plexuscontainers.version>1.5.5</plexuscontainers.version>
     2276    <wagon.version>2.2</wagon.version>
     2277    <slf4j.version>1.6.4</slf4j.version>
     2278    <umlgraph.version>5.6</umlgraph.version>
     2279    <cc-xjc-plugin.version>2.0.1</cc-xjc-plugin.version>
     2280    <jaxb2-basics.version>0.6.3</jaxb2-basics.version>
     2281    <jomc.build.version>1.8</jomc.build.version>
     2282    <!-- Plugin versions. -->
    22832283    <maven-compiler-plugin.artifact.version>2.5.1</maven-compiler-plugin.artifact.version>
    22842284    <maven-site-plugin.artifact.version>3.2</maven-site-plugin.artifact.version>
     
    23132313    <maven-shade-plugin.artifact.version>2.0</maven-shade-plugin.artifact.version>
    23142314    <maven-assembly-plugin.artifact.version>2.3</maven-assembly-plugin.artifact.version>
    2315     <animal-sniffer.version>1.9</animal-sniffer.version>
    2316     <surefire.version>2.12.4</surefire.version>
    2317     <plugintools.version>2.9</plugintools.version> <!-- See http://jira.codehaus.org/browse/MNG-3762 -->
    2318     <plexuscontainers.version>1.5.5</plexuscontainers.version>
    2319     <wagon.version>2.2</wagon.version>
    2320     <slf4j.version>1.6.4</slf4j.version>
    2321     <umlgraph.version>5.6</umlgraph.version>
    2322     <cc-xjc-plugin.version>2.0.1</cc-xjc-plugin.version>
    2323     <jaxb2-basics.version>0.6.3</jaxb2-basics.version>
    2324     <jomc.build.version>1.8</jomc.build.version>
     2315    <!-- Plugin parameters. -->
     2316    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     2317    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
     2318    <xjcOutputDirectory>${project.build.directory}/generated-sources/jaxb</xjcOutputDirectory>
     2319    <xjcTestOutputDirectory>${project.build.directory}/generated-test-sources/jaxb</xjcTestOutputDirectory>
     2320    <javaccOutputDirectory>${project.build.directory}/generated-sources/javacc</javaccOutputDirectory>
     2321    <remoteResourcesOutputDirectory>${project.build.directory}/maven-shared-archive-resources</remoteResourcesOutputDirectory>
     2322    <assembly.useJvmChmod>true</assembly.useJvmChmod>
     2323    <dependency.useJvmChmod>true</dependency.useJvmChmod>
     2324    <jarsigner.maxMemory>256m</jarsigner.maxMemory>
     2325    <maven.compiler.optimize>true</maven.compiler.optimize>
     2326    <maven.compiler.showDeprecation>true</maven.compiler.showDeprecation>
     2327    <maven.compiler.showWarnings>true</maven.compiler.showWarnings>
     2328    <maven.compiler.source>1.5</maven.compiler.source>
     2329    <maven.compiler.target>1.5</maven.compiler.target>
     2330    <maven.javadoc.additionalJOption>-J-client -J-Xms256m -J-Xmx256m -J-Dfile.encoding=${file.encoding}</maven.javadoc.additionalJOption>
     2331    <maven.surefire.argLine>-client -Xms256m -Xmx256m -Dfile.encoding=${file.encoding}</maven.surefire.argLine>
     2332    <mojo.findbugs.jvmArgs>-client -Xms256m -Xmx256m -Dfile.encoding=${file.encoding}</mojo.findbugs.jvmArgs>
     2333    <!-- Parent -->
    23252334    <jomc.api.version>1.0</jomc.api.version>
    23262335    <jomc.spi.version>1.0</jomc.spi.version>
     
    23362345    <jomc-ri.artifact.version>1.4-SNAPSHOT</jomc-ri.artifact.version>
    23372346    <jomc-cli.artifact.version>1.4-SNAPSHOT</jomc-cli.artifact.version>
    2338     <jomc.frs.distribution.id>jomc.org</jomc.frs.distribution.id>
     2347    <jomc.frs.distribution.id>frs.jomc.org</jomc.frs.distribution.id>
    23392348    <jomc.frs.distribution.url>dav:http://frs.jomc.org/</jomc.frs.distribution.url>
    2340     <jomc.xsd.distribution.id>jomc.org</jomc.xsd.distribution.id>
    2341     <jomc.xsd.distribution.url>dav:http://xml.jomc.org/</jomc.xsd.distribution.url>
     2349    <jomc.xml.distribution.id>xml.jomc.org</jomc.xml.distribution.id>
     2350    <jomc.xml.distribution.url>dav:http://xml.jomc.org/</jomc.xml.distribution.url>
    23422351    <jomc.artifacts.url>http://www.jomc.org/jomc/${jomc.base.version}</jomc.artifacts.url>
    2343     <jomc.artifacts.distribution.id>jomc.org</jomc.artifacts.distribution.id>
     2352    <jomc.artifacts.distribution.id>www.jomc.org</jomc.artifacts.distribution.id>
    23442353    <jomc.artifacts.distribution.name>JOMC Site</jomc.artifacts.distribution.name>
    23452354    <jomc.artifacts.distribution.base.url>dav:http://www.jomc.org/</jomc.artifacts.distribution.base.url>
Note: See TracChangeset for help on using the changeset viewer.