pandomium icon indicating copy to clipboard operation
pandomium copied to clipboard

Include documentation/sources of CEF in pandomium?

Open Osiris-Team opened this issue 2 years ago • 1 comments

Is this possible? I know its possible if u add this to your pom.xml file:

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>3.2.1</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>3.0.0</version>
                <executions>
                    <execution>
                        <id>resource-bundles</id>
                        <phase>package</phase>
                        <goals>
                            <!-- produce source artifact for main project sources -->
                            <goal>resource-bundle</goal>

                            <!-- produce source artifact for project test sources -->
                            <goal>test-resource-bundle</goal>
                        </goals>
                        <configuration>
                            <doclint>none</doclint> <!-- Remove this, if you want to get build errors when there is an issue with a comment/documentation. -->
                            <detectOfflineLinks>false</detectOfflineLinks>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

        </plugins>

Osiris-Team avatar Aug 21 '21 07:08 Osiris-Team

I've attached docs & sources of Pandomium. At this moment I don't think I'll be able to attach CEF sources and docs as I need to do it during the process of building their artifacts. I don't have time to do it right now.

dzikoysk avatar Aug 21 '21 12:08 dzikoysk