Skip to content
This repository has been archived by the owner on Sep 27, 2022. It is now read-only.

Commit

Permalink
Change groupId for OSSRH terms of service, release completed
Browse files Browse the repository at this point in the history
  • Loading branch information
Eomm committed Jul 31, 2017
1 parent 6a34da5 commit 4277df6
Show file tree
Hide file tree
Showing 17 changed files with 39 additions and 39 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ Once you [installed the lib](https://maven.apache.org/guides/mini/guide-3rd-part
<build>
<plugins>
<plugin>
<groupId>it.eomm.tools</groupId>
<groupId>com.github.eomm</groupId>
<artifactId>dolm-maven-plugin</artifactId>
<version>LATEST</version>
<version>1.0.0</version>
<executions>
<execution>
<id>build-nice-docs</id>
Expand Down Expand Up @@ -122,7 +122,7 @@ Simply run `mvn clean test`
### Next steps
+ :white_check_mark: JUnit
+ :white_check_mark: Better integration in the maven lifecycle
+ :hourglass_flowing_sand: Deploy on [mvn-repository](http://central.sonatype.org/)
+ :white_check_mark: Deploy on [Sonatype's Open Source Software Repository Hosting (OSSRH)](https://oss.sonatype.org/content/groups/public/com/github/eomm/dolm-maven-plugin/)
+ :white_medium_square: Add a template system to the `.md` files
+ :white_medium_square: Customize the output file format (`docx`, `odt`, ecc...)

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>it.eomm.tools</groupId>
<groupId>com.github.eomm</groupId>
<artifactId>dolm-maven-plugin</artifactId>
<version>1.0.0</version>
<packaging>maven-plugin</packaging>
Expand Down Expand Up @@ -220,7 +220,7 @@
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package it.eomm.tools.dolm;
package com.github.eomm.tools.dolm;

import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.logging.Log;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package it.eomm.tools.dolm;
package com.github.eomm.tools.dolm;

import org.apache.maven.plugin.Mojo;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package it.eomm.tools.dolm.bean;
package com.github.eomm.tools.dolm.bean;

import java.io.Serializable;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package it.eomm.tools.dolm.exceptions;
package com.github.eomm.tools.dolm.exceptions;

public class ConvertException extends Exception {
/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package it.eomm.tools.dolm.exceptions;
package com.github.eomm.tools.dolm.exceptions;

public class PipeException extends Exception {
/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package it.eomm.tools.dolm.goals;
package com.github.eomm.tools.dolm.goals;

import it.eomm.tools.dolm.Dolm;
import it.eomm.tools.dolm.bean.Converted;
import it.eomm.tools.dolm.logic.PipelineConverter;
import it.eomm.tools.dolm.logic.converter.MarkdownFileConverter;
import it.eomm.tools.dolm.logic.converter.OutPdf;
import it.eomm.tools.dolm.utils.ConvertFactory;
import it.eomm.tools.dolm.utils.FileNamePatternFilter;
import it.eomm.tools.dolm.utils.FileSystemIterator;
import com.github.eomm.tools.dolm.Dolm;
import com.github.eomm.tools.dolm.bean.Converted;
import com.github.eomm.tools.dolm.logic.PipelineConverter;
import com.github.eomm.tools.dolm.logic.converter.MarkdownFileConverter;
import com.github.eomm.tools.dolm.logic.converter.OutPdf;
import com.github.eomm.tools.dolm.utils.FileNamePatternFilter;
import com.github.eomm.tools.dolm.utils.FileSystemIterator;
import com.github.eomm.tools.dolm.utils.ConvertFactory;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.LifecyclePhase;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package it.eomm.tools.dolm.logic;
package com.github.eomm.tools.dolm.logic;

import it.eomm.tools.dolm.exceptions.ConvertException;
import com.github.eomm.tools.dolm.exceptions.ConvertException;

/**
* Created by Manuel Spigolon on 02/07/2017.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package it.eomm.tools.dolm.logic;
package com.github.eomm.tools.dolm.logic;

import it.eomm.tools.dolm.exceptions.PipeException;
import com.github.eomm.tools.dolm.exceptions.PipeException;

import java.util.ArrayList;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package it.eomm.tools.dolm.logic.converter;
package com.github.eomm.tools.dolm.logic.converter;

import it.eomm.tools.dolm.bean.Converted;
import it.eomm.tools.dolm.exceptions.ConvertException;
import it.eomm.tools.dolm.logic.IConverter;
import it.eomm.tools.dolm.utils.ConvertFactory;
import com.github.eomm.tools.dolm.bean.Converted;
import com.github.eomm.tools.dolm.logic.IConverter;
import com.github.eomm.tools.dolm.exceptions.ConvertException;
import com.github.eomm.tools.dolm.utils.ConvertFactory;
import org.commonmark.node.Node;
import org.commonmark.parser.Parser;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package it.eomm.tools.dolm.logic.converter;
package com.github.eomm.tools.dolm.logic.converter;

import com.github.eomm.tools.dolm.bean.Converted;
import com.github.eomm.tools.dolm.logic.IConverter;
import com.itextpdf.text.Document;
import com.itextpdf.text.pdf.PdfWriter;
import com.itextpdf.tool.xml.XMLWorkerHelper;
import it.eomm.tools.dolm.bean.Converted;
import it.eomm.tools.dolm.exceptions.ConvertException;
import it.eomm.tools.dolm.logic.IConverter;
import it.eomm.tools.dolm.utils.ConvertFactory;
import com.github.eomm.tools.dolm.exceptions.ConvertException;
import com.github.eomm.tools.dolm.utils.ConvertFactory;
import org.commonmark.node.Node;

import java.io.ByteArrayInputStream;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package it.eomm.tools.dolm.utils;
package com.github.eomm.tools.dolm.utils;

import org.commonmark.Extension;
import org.commonmark.parser.Parser;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package it.eomm.tools.dolm.utils;
package com.github.eomm.tools.dolm.utils;

import java.io.File;
import java.io.FilenameFilter;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package it.eomm.tools.dolm.utils;
package com.github.eomm.tools.dolm.utils;

import java.io.File;
import java.io.FilenameFilter;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package it.eomm.tools.dolm.test;
package com.github.eomm.tools.dolm.test;

import it.eomm.tools.dolm.IDolm;
import com.github.eomm.tools.dolm.IDolm;
import org.apache.maven.plugin.testing.AbstractMojoTestCase;

import java.io.File;
Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/pom-test.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<build>
<plugins>
<plugin>
<groupId>it.eomm.tools</groupId>
<groupId>com.github.eomm</groupId>
<artifactId>dolm-maven-plugin</artifactId>
<!-- The configuration is in DolmTest.java test-class -->
<configuration/>
Expand Down

0 comments on commit 4277df6

Please sign in to comment.