Commit 6c93faa2 authored by Noel's avatar Noel
Browse files

Integra como librería de redmic

parent dbc2abf9
Loading
Loading
Loading
Loading

TODO.txt

deleted100644 → 0
+0 −18
Original line number Diff line number Diff line

Ping search engines

Text file reader
Sitemap reader

Improve validator for basic sitemap case (gzip, 10MB, urls, encoding)
validate Mobile/Geo/Video/Code/News sitemaps


JS api
addUrl({url:"http://www.example.com",lastMod:"2007-08-01");
new WebSitemapGenerator({});
new SitemapIndexGenerator({});

Google KML generation
GeoRSS generation
Google Code packagemap http://www.google.com/help/codesearch_packagemap.html
+74 −124
Original line number Diff line number Diff line
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

	<parent>
		<groupId>es.redmic.lib</groupId>
		<artifactId>libs</artifactId>
		<version>0.5.0</version>
	</parent>

	<modelVersion>4.0.0</modelVersion>
  <groupId>com.github.dfabulich</groupId>
	<artifactId>sitemapgen4j</artifactId>
	<packaging>jar</packaging>
  <version>1.0.7-SNAPSHOT</version>
	<name>SitemapGen4J</name>
  <url>https://github.com/dfabulich/sitemapgen4j/</url>
  <description>SitemapGen4j is an XML sitemap generator written in Java.</description>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <connection>scm:git:git://github.com:dfabulich/sitemapgen4j.git</connection>
    <developerConnection>scm:git:git@github.com:dfabulich/sitemapgen4j.git</developerConnection>
    <url>https://github.com/dfabulich/sitemapgen4j/</url>
  </scm>
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
  <developers>
    <developer>
      <id>dfabulich</id>
      <name>Dan Fabulich</name>
      <email>dan@fabulich.com</email>
      <organization>Redfin</organization>
      <organizationUrl>http://www.redfin.com/</organizationUrl>
      <timezone>-8</timezone>
    </developer>
  </developers>
  <distributionManagement>
    <snapshotRepository>
      <id>ossrh</id>
      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    </snapshotRepository>
    <repository>
      <id>ossrh</id>
      <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
    </repository>
  </distributionManagement>

	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>
	<build>
		<defaultGoal>install</defaultGoal>
		<plugins>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
        <version>3.1</version>
				<configuration>
					<source>1.5</source>
					<target>1.5</target>
@@ -57,12 +32,10 @@
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-eclipse-plugin</artifactId>
        <version>2.5.1</version>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
        <version>2.4</version>
				<executions>
					<execution>
						<id>attach-sources</id>
@@ -75,7 +48,6 @@
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
        <version>2.10.1</version>
				<executions>
					<execution>
						<id>attach-javadocs</id>
@@ -88,20 +60,6 @@
					</execution>
				</executions>
			</plugin>
      <!-- plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-gpg-plugin</artifactId>
        <version>1.5</version>
        <executions>
          <execution>
            <id>sign-artifacts</id>
            <phase>verify</phase>
            <goals>
              <goal>sign</goal>
            </goals>
          </execution>
        </executions>
      </plugin-->
			<plugin>
				<groupId>org.sonatype.plugins</groupId>
				<artifactId>nexus-staging-maven-plugin</artifactId>
@@ -115,12 +73,4 @@
			</plugin>
		</plugins>
	</build>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>