Skip to content

Commit

Permalink
revert the whole delombok→javadoc for now, until…
Browse files Browse the repository at this point in the history
either, preferably, projectlombok/lombok#2709
is implemanted or at least https://youtrack.jetbrains.com/issue/IDEA-259347
will be fixed — reopens projectlombok/lombok#2502
for us ☹
  • Loading branch information
mirabilos committed Jan 13, 2021
1 parent be3cc3d commit c9c5aaa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 40 deletions.
35 changes: 0 additions & 35 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@
<archiver.copyright.lastyear>2021</archiver.copyright.lastyear>
<!-- ‣ maven plugins -->
<maven.owasp.dependency-check.version>6.0.5</maven.owasp.dependency-check.version>
<maven.lombok.delombok-target>${project.build.directory}/javadoc-delombok</maven.lombok.delombok-target>
<maven.lombok.version>${lombok.version}.0</maven.lombok.version>
<!-- ‣ dependency management -->
<junit.version>5.7.0</junit.version>
<lombok.version>1.18.16</lombok.version>
Expand Down Expand Up @@ -192,32 +190,6 @@
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.projectlombok</groupId>
<artifactId>lombok-maven-plugin</artifactId>
<version>${maven.lombok.version}</version>
<executions>
<execution>
<id>delombok-for-javadoc</id>
<phase>generate-sources</phase>
<goals>
<goal>delombok</goal>
</goals>
<configuration>
<sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
<outputDirectory>${maven.lombok.delombok-target}</outputDirectory>
<addOutputDirectory>false</addOutputDirectory>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
Expand Down Expand Up @@ -264,13 +236,6 @@
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<sourcepath>${maven.lombok.delombok-target}</sourcepath>
</configuration>
</plugin>
</plugins>
</build>
<dependencyManagement>
Expand Down
10 changes: 5 additions & 5 deletions src/main/java/org/evolvis/tartools/rfc822/Path.java
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ public class Path extends Parser {
* Representation for a substring of the input string, FWS unfolded
*
* <p>{@link #toString()} will return the (unfolded) wire representation,
* {@link #getData()} the unfolded user representation. Neither are true
* getData() the unfolded user representation. Neither are true
* substrings of the input any more if unfolding, as in {@link #unfold(String)},
* was necessary.</p>
*
Expand Down Expand Up @@ -208,7 +208,7 @@ public String toString()
/**
* Representation for a local-part (FWS unfolded) or a domain (dot-atom only)
*
* <p>Test {@link #isValid()} first.</p>
* <p>Test isValid() first.</p>
*
* @author mirabilos (t.glaser@tarent.de)
*/
Expand Down Expand Up @@ -582,7 +582,7 @@ protected Path(final String input)
* Parses the address as mailbox-list, e.g. for the From and Resent-From headers
* (but see {@link #asAddressList()} for RFC6854’s RFC2026 §3.3(d) Limited Use)
*
* @return parser result; remember to call {@link Path.AddressList#isValid()} first!
* @return parser result; remember to call isValid() on it first!
*/
public AddressList
asMailboxList()
Expand All @@ -601,7 +601,7 @@ protected Path(final String input)
*
* @param allowRFC6854forLimitedUse use address instead of mailbox parsing
*
* @return parser result; remember to call {@link Path.Address#isValid()} first!
* @return parser result; remember to call isValid() on it first!
*/
public Address
forSender(final boolean allowRFC6854forLimitedUse)
Expand Down Expand Up @@ -636,7 +636,7 @@ protected Path(final String input)
* allows using this for the From and Resent-From headers, normally
* covered by the {@link #asMailboxList()} method.
*
* @return parser result; remember to call {@link Path.AddressList#isValid()} first!
* @return parser result; remember to call isValid() on it first!
*/
public AddressList
asAddressList()
Expand Down

0 comments on commit c9c5aaa

Please sign in to comment.