Browse Source

trying to fix pom to upload javadocs

pull/1/head
Mark Pollack 15 years ago
parent
commit
0dae45fa7f
  1. 11
      pom.xml
  2. 11
      spring-data-document-parent/pom.xml

11
pom.xml

@ -62,6 +62,14 @@ @@ -62,6 +62,14 @@
</extensions>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>com.agilejava.docbkx</groupId>
<artifactId>docbkx-maven-plugin</artifactId>
@ -122,9 +130,6 @@ @@ -122,9 +130,6 @@
</configuration>
</plugin>
</plugins>
<!-- the name of this project is 'spring-amqp-dist';
make sure the zip file is just 'spring-amqp'. -->
<finalName>${dist.finalName}</finalName>
</build>
<distributionManagement>

11
spring-data-document-parent/pom.xml

@ -16,6 +16,17 @@ @@ -16,6 +16,17 @@
<org.mockito.version>1.8.4</org.mockito.version>
<org.slf4j.version>1.5.10</org.slf4j.version>
<org.springframework.version>3.0.4.RELEASE</org.springframework.version>
<!-- dist.* properties are used by the antrun tasks below -->
<dist.id>spring-data-document</dist.id>
<dist.name>Spring data Document</dist.name>
<dist.key>DATADOC</dist.key>
<dist.version>${project.version}</dist.version>
<dist.releaseType>snapshot</dist.releaseType>
<dist.finalName>${dist.id}-${dist.version}</dist.finalName>
<dist.fileName>${dist.finalName}.zip</dist.fileName>
<dist.filePath>target/${dist.fileName}</dist.filePath>
<dist.bucketName>dist.springframework.org</dist.bucketName>
</properties>
<profiles>
<profile>

Loading…
Cancel
Save