Author: dennisl
Date: Tue Nov 14 15:05:57 2006
New Revision: 475046

URL: http://svn.apache.org/viewvc?view=rev&rev=475046
Log:
o Set EOL style to native.

Modified:
    
maven/site/trunk/src/site/apt/guides/introduction/introduction-to-optional-and-excludes-dependencies.apt
   (props changed)
    maven/site/trunk/src/site/apt/guides/mini/guide-3rd-party-jars-remote.apt   
(contents, props changed)
    maven/site/trunk/src/site/apt/maven-developers/index.apt   (props changed)
    maven/site/trunk/src/site/apt/plugin-developers/cookbook/index.apt   (props 
changed)
    maven/site/trunk/src/site/apt/plugin-developers/index.apt   (props changed)
    maven/site/trunk/src/site/apt/repository/index.apt   (props changed)
    maven/site/trunk/src/site/apt/run-maven/cookbook/index.apt   (props changed)
    maven/site/trunk/src/site/apt/run-maven/index.apt   (props changed)
    maven/site/trunk/src/site/apt/todo.apt   (props changed)
    maven/site/trunk/src/site/apt/users/cookbook/index.apt   (props changed)
    maven/site/trunk/src/site/apt/users/index.apt   (props changed)
    maven/site/trunk/src/site/resources/ant/build-a1.xml   (props changed)
    maven/site/trunk/src/site/resources/ant/build-a2.xml   (props changed)
    maven/site/trunk/src/site/resources/ant/build-a3.xml   (props changed)
    maven/site/trunk/src/site/resources/ant/build-a4.xml   (props changed)

Propchange: 
maven/site/trunk/src/site/apt/guides/introduction/introduction-to-optional-and-excludes-dependencies.apt
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: 
maven/site/trunk/src/site/apt/guides/mini/guide-3rd-party-jars-remote.apt
URL: 
http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/guides/mini/guide-3rd-party-jars-remote.apt?view=diff&rev=475046&r1=475045&r2=475046
==============================================================================
--- maven/site/trunk/src/site/apt/guides/mini/guide-3rd-party-jars-remote.apt 
(original)
+++ maven/site/trunk/src/site/apt/guides/mini/guide-3rd-party-jars-remote.apt 
Tue Nov 14 15:05:57 2006
@@ -1,59 +1,59 @@
- ------
- Guide to deploying 3rd party JARs to remote repository
- ------
- Allan Ramirez
- ------
- 22 February 2006
- ------
-
-Guide to deploying 3rd party JARs to remote repository
-
- Same concept of the 
{{{guide-installing-3rd-party-jars.html}install:install-file}}
- goal of the maven-install-plugin where the 3rd party JAR is installed 
- in the local repository. But this time instead to local repository the 
- JAR will be install both in the local and remote repository. 
-
- To deploy a 3rd party JAR use the deploy:deploy-file goal under 
- maven-deploy-plugin.
-
- First, the wagon-provider(wagon-ftp, wagon-file, etc..) must be placed to 
- your %M2_HOME%/lib.
-
- Then execute the command:
-
-+----+
-mvn deploy:deploy-file -DgroupId=<group-id> \
-       -DartifactId=<artifact-id> \
-       -Dversion=<version> \
-       -Dpackaging=<type-of-packaging> \
-       -Dfile=<path-to-file> \
-       -DrepositoryId=<id-to-map-on-server-section-of-settings.xml> \
-       -Durl=<url-of-the-repositor-to-deploy>
-+----+
-
-* Deploying a 3rd party JAR with a generic POM
-
-  By default, deploy:deploy-file generates a generic POM(.pom) to be deploy 
-  together with the 3rd party JAR. To disable this feature we should set the 
-  <<<generatePOM>>> argument to false.
-
-+----+
--DgeneratePom=false
-+----+
-
-* Deploying a 3rd party JAR with a customed POM
-
-  If a POM is already existing for the 3rd Party JAR and you want to deploy 
-  it together with the JAR we should use the <<<pomFile>>> argument of the 
-  deploy-file goal. See sample below.
-
-+----+
-mvn deploy:deploy-file -DpomFile=<path-to-pom> \
-       -Dfile=<path-to-file> \
-       -DrepositoryId=<id-to-map-on-server-section-of-settings.xml> \
-       -Durl=<url-of-the-repositor-to-deploy>  
-+----+
-
-  Note that <<<groupId>>>, <<<artifactId>>>, <<<version>>> and <<<packaging>>> 
-  arguments are not included here because deploy-file goal will get these 
+ ------
+ Guide to deploying 3rd party JARs to remote repository
+ ------
+ Allan Ramirez
+ ------
+ 22 February 2006
+ ------
+
+Guide to deploying 3rd party JARs to remote repository
+
+ Same concept of the 
{{{guide-installing-3rd-party-jars.html}install:install-file}}
+ goal of the maven-install-plugin where the 3rd party JAR is installed 
+ in the local repository. But this time instead to local repository the 
+ JAR will be install both in the local and remote repository. 
+
+ To deploy a 3rd party JAR use the deploy:deploy-file goal under 
+ maven-deploy-plugin.
+
+ First, the wagon-provider(wagon-ftp, wagon-file, etc..) must be placed to 
+ your %M2_HOME%/lib.
+
+ Then execute the command:
+
++----+
+mvn deploy:deploy-file -DgroupId=<group-id> \
+       -DartifactId=<artifact-id> \
+       -Dversion=<version> \
+       -Dpackaging=<type-of-packaging> \
+       -Dfile=<path-to-file> \
+       -DrepositoryId=<id-to-map-on-server-section-of-settings.xml> \
+       -Durl=<url-of-the-repositor-to-deploy>
++----+
+
+* Deploying a 3rd party JAR with a generic POM
+
+  By default, deploy:deploy-file generates a generic POM(.pom) to be deploy 
+  together with the 3rd party JAR. To disable this feature we should set the 
+  <<<generatePOM>>> argument to false.
+
++----+
+-DgeneratePom=false
++----+
+
+* Deploying a 3rd party JAR with a customed POM
+
+  If a POM is already existing for the 3rd Party JAR and you want to deploy 
+  it together with the JAR we should use the <<<pomFile>>> argument of the 
+  deploy-file goal. See sample below.
+
++----+
+mvn deploy:deploy-file -DpomFile=<path-to-pom> \
+       -Dfile=<path-to-file> \
+       -DrepositoryId=<id-to-map-on-server-section-of-settings.xml> \
+       -Durl=<url-of-the-repositor-to-deploy>  
++----+
+
+  Note that <<<groupId>>>, <<<artifactId>>>, <<<version>>> and <<<packaging>>> 
+  arguments are not included here because deploy-file goal will get these 
   information from the given POM. 

Propchange: 
maven/site/trunk/src/site/apt/guides/mini/guide-3rd-party-jars-remote.apt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/site/trunk/src/site/apt/maven-developers/index.apt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/site/trunk/src/site/apt/plugin-developers/cookbook/index.apt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/site/trunk/src/site/apt/plugin-developers/index.apt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/site/trunk/src/site/apt/repository/index.apt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/site/trunk/src/site/apt/run-maven/cookbook/index.apt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/site/trunk/src/site/apt/run-maven/index.apt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/site/trunk/src/site/apt/todo.apt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/site/trunk/src/site/apt/users/cookbook/index.apt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/site/trunk/src/site/apt/users/index.apt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/site/trunk/src/site/resources/ant/build-a1.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/site/trunk/src/site/resources/ant/build-a2.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/site/trunk/src/site/resources/ant/build-a3.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/site/trunk/src/site/resources/ant/build-a4.xml
------------------------------------------------------------------------------
    svn:eol-style = native


Reply via email to