Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 2770295

Browse files
committed
updated site for new location
1 parent c0826bc commit 2770295

File tree

3 files changed

+73
-95
lines changed

3 files changed

+73
-95
lines changed

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
target/
2+
.project
3+
.classpath
4+
.settings/
5+
bin
6+
.idea
7+
*.iml
8+
.java-version

pom.xml

+29-75
Original file line numberDiff line numberDiff line change
@@ -3,100 +3,54 @@
33
<parent>
44
<groupId>org.codehaus.plexus</groupId>
55
<artifactId>plexus</artifactId>
6-
<version>1.0.10</version>
6+
<version>3.3.3</version>
77
</parent>
8+
89
<artifactId>plexus-site</artifactId>
9-
<version>1.0-alpha-1-SNAPSHOT</version>
10+
<version>1.0-SNAPSHOT</version>
1011
<packaging>pom</packaging>
12+
1113
<name>Plexus Site</name>
12-
<build>
13-
<plugins>
14-
<plugin>
15-
<artifactId>maven-site-plugin</artifactId>
16-
<version>2.0-beta-7</version>
17-
</plugin>
18-
<plugin>
19-
<groupId>org.apache.maven.doxia</groupId>
20-
<artifactId>doxia-maven-plugin</artifactId>
21-
<executions>
22-
<execution>
23-
<phase>pre-site</phase>
24-
<goals>
25-
<goal>render-books</goal>
26-
</goals>
27-
</execution>
28-
</executions>
29-
<configuration>
30-
<books>
31-
<book>
32-
<directory>src/site</directory>
33-
<descriptor>src/books/writing-components-trail.xml</descriptor>
34-
<formats>
35-
<!--format>
36-
<id>pdf</id>
37-
</format-->
38-
<format>
39-
<id>latex</id>
40-
</format>
41-
<format>
42-
<id>xdoc</id>
43-
</format>
44-
</formats>
45-
</book>
46-
Plexus Developer reference
47-
<book>
48-
<directory>src/site</directory>
49-
<descriptor>src/books/developer-reference.xml</descriptor>
50-
<formats>
51-
<!--format>
52-
<id>pdf</id>
53-
</format-->
54-
<format>
55-
<id>latex</id>
56-
</format>
57-
<format>
58-
<id>xdoc</id>
59-
</format>
60-
</formats>
61-
</book>
62-
</books>
63-
</configuration>
64-
</plugin>
65-
</plugins>
66-
</build>
14+
<url>http://codehaus-plexus.github.io/</url>
15+
<organization>
16+
<name>Codehaus Plexus</name>
17+
<url>http://codehaus-plexus.github.io/</url>
18+
</organization>
19+
20+
<scm>
21+
<connection>scm:git:git@github.com:codehaus-plexus/codehaus-plexus.github.io.git</connection>
22+
<developerConnection>scm:git:git@github.com:codehaus-plexus/codehaus-plexus.github.io.git</developerConnection>
23+
<url>http://github.com/codehaus-plexus/codehaus-plexus.github.io/tree/source</url>
24+
<tag>source</tag>
25+
</scm>
26+
<issueManagement>
27+
<system>github</system>
28+
<url>https://github.com/codehaus-plexus/codehaus-plexus.github.io/issues</url>
29+
</issueManagement>
30+
6731
<reporting>
6832
<excludeDefaults>true</excludeDefaults>
6933
<plugins>
7034
<plugin>
7135
<groupId>org.apache.maven.plugins</groupId>
7236
<artifactId>maven-project-info-reports-plugin</artifactId>
7337
<reportSets>
74-
<reportSet>
38+
<reportSet><!-- don't execute inherited reports, since some are useless and cannot be removed -->
39+
<configuration>
40+
<skip>true</skip>
41+
</configuration>
42+
</reportSet>
43+
<reportSet><!-- execute only reports necessary for main site, in a dedicated reportSet -->
44+
<id>site-mpir</id>
7545
<reports>
76-
<report>cim</report>
46+
<report>project-team</report>
7747
<report>issue-tracking</report>
78-
<report>mailing-list</report>
7948
<report>license</report>
80-
<report>project-team</report>
8149
<report>scm</report>
8250
</reports>
8351
</reportSet>
8452
</reportSets>
8553
</plugin>
8654
</plugins>
8755
</reporting>
88-
<!-- repeated here so that plexus-site is not appended -->
89-
<scm>
90-
<connection>scm:svn:http://svn.codehaus.org/plexus/trunks/</connection>
91-
<developerConnection>scm:svn:https://svn.codehaus.org/plexus/trunks/</developerConnection>
92-
<url>http://fisheye.codehaus.org/browse/plexus/</url>
93-
</scm>
94-
<distributionManagement>
95-
<site>
96-
<id>plexus-site</id>
97-
<name>Plexus Website</name>
98-
<url>dav:https://dav.codehaus.org/plexus/</url>
99-
</site>
100-
</distributionManagement>
101-
10256
</project>

src/site/site.xml

+36-20
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,62 @@
1-
<?xml version="1.0" encoding="ISO-8859-1"?>
2-
<project name="Plexus">
1+
<?xml version="1.0"?>
2+
3+
<project xmlns="http://maven.apache.org/DECORATION/1.3.0"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xsi:schemaLocation="http://maven.apache.org/DECORATION/1.3.0 http://maven.apache.org/xsd/decoration-1.3.0.xsd"
6+
name="Plexus">
7+
<version position="none" />
8+
39
<bannerLeft>
410
<name>Plexus</name>
5-
<href>http://plexus.codehaus.org/</href>
6-
<src>/images/plexus-logo.png</src>
11+
<href>http://codehaus-plexus.github.io/</href>
12+
<src>/images/plexus-logo-trans.png</src>
713
</bannerLeft>
814

915
<publishDate format="yyyy-MM-dd" position="right" />
1016

1117
<skin>
12-
<groupId>org.codehaus.plexus</groupId>
13-
<artifactId>plexus-stylus-skin</artifactId>
14-
<version>1.0</version>
18+
<groupId>org.apache.maven.skins</groupId>
19+
<artifactId>maven-fluido-skin</artifactId>
20+
<version>1.4</version>
1521
</skin>
1622

23+
<custom>
24+
<fluidoSkin>
25+
<sourceLineNumbersEnabled>true</sourceLineNumbersEnabled>
26+
<googlePlusOne />
27+
<googleSearch>
28+
<sitesearch>http://codehaus-plexus.github.io/</sitesearch>
29+
</googleSearch>
30+
</fluidoSkin>
31+
</custom>
32+
1733
<body>
18-
<breadcrumbs>
19-
<item name="Plexus" href="/"/>
20-
</breadcrumbs>
2134

2235
<head>
2336
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
2437
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
2538
</head>
2639

2740
<links>
28-
<item name="Plexus" href="http://plexus.codehaus.org" />
29-
<item name="The Codehaus" href="http://codehaus.org" />
41+
<item name="Plexus" href="http://codehaus-plexus.github.io/" />
3042
</links>
3143

44+
<breadcrumbs>
45+
<item name="Plexus" href="/"/>
46+
</breadcrumbs>
47+
3248
<menu name="Plexus">
3349
<item name="Overview" href="/index.html" />
3450
</menu>
3551

52+
<menu name="Plexus Projects" inherit="bottom">
53+
<item name="Modello" href="/modello/" />
54+
<item name="Plexus Classworlds" href="/plexus-classworlds/" />
55+
<item name="Plexus Container" href="/plexus-containers/" />
56+
<item name="Plexus Components" href="/plexus-components/" />
57+
<item name="Plexus Utils" href="/plexus-utils/" />
58+
</menu>
59+
3660
<menu name="Downloads">
3761
<!-- .tgz files for latest release and snapshots -->
3862
<item name="Sources" href="source-repository.html" />
@@ -76,14 +100,6 @@
76100
<item name="Get Involved" href="/get-involved.html" />
77101
</menu>
78102

79-
<menu name="Plexus Projects" inherit="bottom">
80-
<item name="Plexus Classworlds" href="/plexus-classworlds/" />
81-
<item name="Plexus Container" href="/plexus-containers/" />
82-
<item name="Plexus Components" href="/plexus-components/" />
83-
<item name="Plexus Maven Plugin" href="/plexus-maven-plugin/" />
84-
<item name="Plexus Utils" href="/plexus-utils/" />
85-
</menu>
86-
87103
<menu ref="reports" />
88104

89105
</body>

0 commit comments

Comments
 (0)