<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="sk">
	<id>https://informatika.kubini.sk/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Kubini</id>
	<title>Informatika - Príspevky používateľa [sk]</title>
	<link rel="self" type="application/atom+xml" href="https://informatika.kubini.sk/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Kubini"/>
	<link rel="alternate" type="text/html" href="https://informatika.kubini.sk/index.php?title=%C5%A0peci%C3%A1lne:Pr%C3%ADspevky/Kubini"/>
	<updated>2026-08-02T04:38:27Z</updated>
	<subtitle>Príspevky používateľa</subtitle>
	<generator>MediaWiki 1.39.1</generator>
	<entry>
		<id>https://informatika.kubini.sk/index.php?title=Apache_Maven&amp;diff=15</id>
		<title>Apache Maven</title>
		<link rel="alternate" type="text/html" href="https://informatika.kubini.sk/index.php?title=Apache_Maven&amp;diff=15"/>
		<updated>2023-02-09T23:05:57Z</updated>

		<summary type="html">&lt;p&gt;Kubini: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Časti:&lt;br /&gt;
* [[Standard Directory Layout (Apache Maven)|Standard Directory Layout]]&lt;br /&gt;
* [[Príkazy v Maven]]&lt;/div&gt;</summary>
		<author><name>Kubini</name></author>
	</entry>
	<entry>
		<id>https://informatika.kubini.sk/index.php?title=Pr%C3%ADkazy_v_Maven&amp;diff=14</id>
		<title>Príkazy v Maven</title>
		<link rel="alternate" type="text/html" href="https://informatika.kubini.sk/index.php?title=Pr%C3%ADkazy_v_Maven&amp;diff=14"/>
		<updated>2023-02-09T23:05:11Z</updated>

		<summary type="html">&lt;p&gt;Kubini: /* Spustenie main triedy */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== mvn --version  ==   &lt;br /&gt;
- Prints out the version of Maven you are running.&lt;br /&gt;
&lt;br /&gt;
== mvn clean ==&lt;br /&gt;
- Cleans the maven project by deleting the target directory.&lt;br /&gt;
&lt;br /&gt;
== mvn compiler:compile ==&lt;br /&gt;
- Compiles the java source classes of the maven project.&lt;br /&gt;
&lt;br /&gt;
== mvn compiler:testCompile ==&lt;br /&gt;
- This command compiles the test classes of the maven project.&lt;br /&gt;
&lt;br /&gt;
== mvn package ==&lt;br /&gt;
- Compiles all the Java files, run any tests, and package the deliverable code and resources into target/my-app-1.0.jar (assuming the artifactId is my-app and the version is 1.0.)&lt;br /&gt;
- Builds the maven project and packages them into a JAR, WAR, etc.&lt;br /&gt;
&lt;br /&gt;
== mvn install ==&lt;br /&gt;
- Builds the maven project and installs the project files (JAR, WAR, pom.xml, etc) to the local repository.&lt;br /&gt;
&lt;br /&gt;
== mvn deploy ==&lt;br /&gt;
- This command is used to deploy the artifact to the remote repository. The remote repository should be configured properly in the project pom.xml file distributionManagement tag. The server entries in the maven settings.xml file is used to provide authentication details.&lt;br /&gt;
&lt;br /&gt;
== mvn validate ==&lt;br /&gt;
- Validates the maven project that everything is correct and all the necessary information is available.&lt;br /&gt;
&lt;br /&gt;
== mvn dependency:tree ==&lt;br /&gt;
- Generates the dependency tree of the maven project.&lt;br /&gt;
&lt;br /&gt;
== mvn dependency:analyze ==&lt;br /&gt;
- Analyzes the maven project to identify the unused declared and used undeclared dependencies.&lt;br /&gt;
- It’s useful in reducing the build size by identifying the unused dependencies and then remove it from the pom.xml file.&lt;br /&gt;
&lt;br /&gt;
== mvn archetype:generate ==&lt;br /&gt;
- Maven archetypes is a maven project templating toolkit. We can use this command to generate a skeleton maven project of different types, such as JAR, web application, maven site, etc.&lt;br /&gt;
- Recommended Reading: Creating a Java Project using Maven Archetypes (https://maven.apache.org/archetypes/maven-archetype-quickstart/).&lt;br /&gt;
&lt;br /&gt;
== mvn site:site ==&lt;br /&gt;
- Generates a site for the project.&lt;br /&gt;
- You will notice a “site” directory in the target after executing this command.&lt;br /&gt;
There will be multiple HTML files inside the site directory that provides information related to the project.&lt;br /&gt;
&lt;br /&gt;
== mvn test ==&lt;br /&gt;
- Run the test cases of the project using the maven-surefire-plugin.&lt;br /&gt;
&lt;br /&gt;
== mvn compile ==&lt;br /&gt;
- It’s used to compile the source Java classes of the project.&lt;br /&gt;
&lt;br /&gt;
== mvn verify ==&lt;br /&gt;
- Build the project, runs all the test cases and run any checks on the results of the integration tests to ensure quality criteria are met.&lt;br /&gt;
&lt;br /&gt;
== mvn exec ==&lt;br /&gt;
=== Spustenie main triedy ===&lt;br /&gt;
&amp;lt;pre&amp;gt; mvn exec:java -Dexec.mainClass=com.mycompany.App &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Referencie ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Kubini</name></author>
	</entry>
	<entry>
		<id>https://informatika.kubini.sk/index.php?title=Pr%C3%ADkazy_v_Maven&amp;diff=13</id>
		<title>Príkazy v Maven</title>
		<link rel="alternate" type="text/html" href="https://informatika.kubini.sk/index.php?title=Pr%C3%ADkazy_v_Maven&amp;diff=13"/>
		<updated>2023-02-09T23:04:45Z</updated>

		<summary type="html">&lt;p&gt;Kubini: /* Spustenie main triedy */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== mvn --version  ==   &lt;br /&gt;
- Prints out the version of Maven you are running.&lt;br /&gt;
&lt;br /&gt;
== mvn clean ==&lt;br /&gt;
- Cleans the maven project by deleting the target directory.&lt;br /&gt;
&lt;br /&gt;
== mvn compiler:compile ==&lt;br /&gt;
- Compiles the java source classes of the maven project.&lt;br /&gt;
&lt;br /&gt;
== mvn compiler:testCompile ==&lt;br /&gt;
- This command compiles the test classes of the maven project.&lt;br /&gt;
&lt;br /&gt;
== mvn package ==&lt;br /&gt;
- Compiles all the Java files, run any tests, and package the deliverable code and resources into target/my-app-1.0.jar (assuming the artifactId is my-app and the version is 1.0.)&lt;br /&gt;
- Builds the maven project and packages them into a JAR, WAR, etc.&lt;br /&gt;
&lt;br /&gt;
== mvn install ==&lt;br /&gt;
- Builds the maven project and installs the project files (JAR, WAR, pom.xml, etc) to the local repository.&lt;br /&gt;
&lt;br /&gt;
== mvn deploy ==&lt;br /&gt;
- This command is used to deploy the artifact to the remote repository. The remote repository should be configured properly in the project pom.xml file distributionManagement tag. The server entries in the maven settings.xml file is used to provide authentication details.&lt;br /&gt;
&lt;br /&gt;
== mvn validate ==&lt;br /&gt;
- Validates the maven project that everything is correct and all the necessary information is available.&lt;br /&gt;
&lt;br /&gt;
== mvn dependency:tree ==&lt;br /&gt;
- Generates the dependency tree of the maven project.&lt;br /&gt;
&lt;br /&gt;
== mvn dependency:analyze ==&lt;br /&gt;
- Analyzes the maven project to identify the unused declared and used undeclared dependencies.&lt;br /&gt;
- It’s useful in reducing the build size by identifying the unused dependencies and then remove it from the pom.xml file.&lt;br /&gt;
&lt;br /&gt;
== mvn archetype:generate ==&lt;br /&gt;
- Maven archetypes is a maven project templating toolkit. We can use this command to generate a skeleton maven project of different types, such as JAR, web application, maven site, etc.&lt;br /&gt;
- Recommended Reading: Creating a Java Project using Maven Archetypes (https://maven.apache.org/archetypes/maven-archetype-quickstart/).&lt;br /&gt;
&lt;br /&gt;
== mvn site:site ==&lt;br /&gt;
- Generates a site for the project.&lt;br /&gt;
- You will notice a “site” directory in the target after executing this command.&lt;br /&gt;
There will be multiple HTML files inside the site directory that provides information related to the project.&lt;br /&gt;
&lt;br /&gt;
== mvn test ==&lt;br /&gt;
- Run the test cases of the project using the maven-surefire-plugin.&lt;br /&gt;
&lt;br /&gt;
== mvn compile ==&lt;br /&gt;
- It’s used to compile the source Java classes of the project.&lt;br /&gt;
&lt;br /&gt;
== mvn verify ==&lt;br /&gt;
- Build the project, runs all the test cases and run any checks on the results of the integration tests to ensure quality criteria are met.&lt;br /&gt;
&lt;br /&gt;
== mvn exec ==&lt;br /&gt;
=== Spustenie main triedy ===&lt;br /&gt;
&amp;lt;pre&amp;gt; mvn exec:java -Dexec.mainClass=com.mycompany.App &amp;lt;/pre&amp;gt; &amp;lt;ref name=&amp;quot;run-main-class-of-maven-project&amp;quot;&amp;gt;run main class of Maven project- Stack Exchange [online]. Dostupné z: https://stackoverflow.com/questions/9846046/run-main-class-of-maven-project&lt;br /&gt;
&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Referencie ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Kubini</name></author>
	</entry>
	<entry>
		<id>https://informatika.kubini.sk/index.php?title=Pr%C3%ADkazy_v_Maven&amp;diff=12</id>
		<title>Príkazy v Maven</title>
		<link rel="alternate" type="text/html" href="https://informatika.kubini.sk/index.php?title=Pr%C3%ADkazy_v_Maven&amp;diff=12"/>
		<updated>2023-02-09T23:03:14Z</updated>

		<summary type="html">&lt;p&gt;Kubini: Vytvorená stránka „== mvn --version  ==    - Prints out the version of Maven you are running.  == mvn clean == - Cleans the maven project by deleting the target directory.  == mvn compiler:compile == - Compiles the java source classes of the maven project.  == mvn compiler:testCompile == - This command compiles the test classes of the maven project.  == mvn package == - Compiles all the Java files, run any tests, and package the deliverable code and resources into target/my-app-1.0.j…“&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== mvn --version  ==   &lt;br /&gt;
- Prints out the version of Maven you are running.&lt;br /&gt;
&lt;br /&gt;
== mvn clean ==&lt;br /&gt;
- Cleans the maven project by deleting the target directory.&lt;br /&gt;
&lt;br /&gt;
== mvn compiler:compile ==&lt;br /&gt;
- Compiles the java source classes of the maven project.&lt;br /&gt;
&lt;br /&gt;
== mvn compiler:testCompile ==&lt;br /&gt;
- This command compiles the test classes of the maven project.&lt;br /&gt;
&lt;br /&gt;
== mvn package ==&lt;br /&gt;
- Compiles all the Java files, run any tests, and package the deliverable code and resources into target/my-app-1.0.jar (assuming the artifactId is my-app and the version is 1.0.)&lt;br /&gt;
- Builds the maven project and packages them into a JAR, WAR, etc.&lt;br /&gt;
&lt;br /&gt;
== mvn install ==&lt;br /&gt;
- Builds the maven project and installs the project files (JAR, WAR, pom.xml, etc) to the local repository.&lt;br /&gt;
&lt;br /&gt;
== mvn deploy ==&lt;br /&gt;
- This command is used to deploy the artifact to the remote repository. The remote repository should be configured properly in the project pom.xml file distributionManagement tag. The server entries in the maven settings.xml file is used to provide authentication details.&lt;br /&gt;
&lt;br /&gt;
== mvn validate ==&lt;br /&gt;
- Validates the maven project that everything is correct and all the necessary information is available.&lt;br /&gt;
&lt;br /&gt;
== mvn dependency:tree ==&lt;br /&gt;
- Generates the dependency tree of the maven project.&lt;br /&gt;
&lt;br /&gt;
== mvn dependency:analyze ==&lt;br /&gt;
- Analyzes the maven project to identify the unused declared and used undeclared dependencies.&lt;br /&gt;
- It’s useful in reducing the build size by identifying the unused dependencies and then remove it from the pom.xml file.&lt;br /&gt;
&lt;br /&gt;
== mvn archetype:generate ==&lt;br /&gt;
- Maven archetypes is a maven project templating toolkit. We can use this command to generate a skeleton maven project of different types, such as JAR, web application, maven site, etc.&lt;br /&gt;
- Recommended Reading: Creating a Java Project using Maven Archetypes (https://maven.apache.org/archetypes/maven-archetype-quickstart/).&lt;br /&gt;
&lt;br /&gt;
== mvn site:site ==&lt;br /&gt;
- Generates a site for the project.&lt;br /&gt;
- You will notice a “site” directory in the target after executing this command.&lt;br /&gt;
There will be multiple HTML files inside the site directory that provides information related to the project.&lt;br /&gt;
&lt;br /&gt;
== mvn test ==&lt;br /&gt;
- Run the test cases of the project using the maven-surefire-plugin.&lt;br /&gt;
&lt;br /&gt;
== mvn compile ==&lt;br /&gt;
- It’s used to compile the source Java classes of the project.&lt;br /&gt;
&lt;br /&gt;
== mvn verify ==&lt;br /&gt;
- Build the project, runs all the test cases and run any checks on the results of the integration tests to ensure quality criteria are met.&lt;br /&gt;
&lt;br /&gt;
== mvn exec ==&lt;br /&gt;
=== Spustenie main triedy ===&lt;br /&gt;
mvn exec:java -Dexec.mainClass=com.mycompany.App &amp;lt;ref name=&amp;quot;run-main-class-of-maven-project&amp;quot;&amp;gt;run main class of Maven project- Stack Exchange [online]. Dostupné z: https://stackoverflow.com/questions/9846046/run-main-class-of-maven-project&lt;br /&gt;
&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Referencie ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Kubini</name></author>
	</entry>
	<entry>
		<id>https://informatika.kubini.sk/index.php?title=Standard_Directory_Layout_(Apache_Maven)&amp;diff=11</id>
		<title>Standard Directory Layout (Apache Maven)</title>
		<link rel="alternate" type="text/html" href="https://informatika.kubini.sk/index.php?title=Standard_Directory_Layout_(Apache_Maven)&amp;diff=11"/>
		<updated>2023-02-09T22:51:44Z</updated>

		<summary type="html">&lt;p&gt;Kubini: /* Štruktúra */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Nastavenie ==&lt;br /&gt;
If you follow the directory structure, you do not need to specify the directories of your source code, test code, resource files, etc. in your POM file. &amp;lt;ref name=&amp;quot;maven_standard_directory_layout&amp;quot;&amp;gt;Maven – Introduction to the Standard Directory Layout. Maven – Welcome to Apache Maven [online]. Dostupné z: https://maven.apache.org/guides/introduction/introduction-to-the-standard-directory-layout.html&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Štruktúra ==&lt;br /&gt;
=== Rýchly náhľad ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
- src&lt;br /&gt;
-- main&lt;br /&gt;
----- java&lt;br /&gt;
----- resources&lt;br /&gt;
----- webapp&lt;br /&gt;
- test&lt;br /&gt;
----- java&lt;br /&gt;
----- resources&lt;br /&gt;
- target&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Komplexný náhľad ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
|-- pom.xml&lt;br /&gt;
`-- src&lt;br /&gt;
    |-- main&lt;br /&gt;
    |   `-- java&lt;br /&gt;
    |   |   `-- com&lt;br /&gt;
    |   |       `-- mycompany&lt;br /&gt;
    |   |           `-- app&lt;br /&gt;
    |   |               `-- App.java&lt;br /&gt;
    |   `-- sql, groovy, ...&lt;br /&gt;
    |   `-- resources&lt;br /&gt;
    |       `-- META-INF&lt;br /&gt;
    |           `-- application.properties&lt;br /&gt;
    |-- test&lt;br /&gt;
    |   `-- java&lt;br /&gt;
    |   |   `-- com&lt;br /&gt;
    |   |       `-- mycompany&lt;br /&gt;
    |   |           `-- app&lt;br /&gt;
    |   |               `-- AppTest.java&lt;br /&gt;
    |   `-- resources&lt;br /&gt;
    |       `-- test.properties&lt;br /&gt;
    `-- target&lt;br /&gt;
        `-- classes&lt;br /&gt;
            `-- com&lt;br /&gt;
                `-- mycompany&lt;br /&gt;
                      `-- app&lt;br /&gt;
                        `-- App.class&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Project home ==&lt;br /&gt;
Contains the pom.xml and all subdirectories.&lt;br /&gt;
&lt;br /&gt;
== src ==&lt;br /&gt;
Root directory of source code and test code.&lt;br /&gt;
&lt;br /&gt;
== src/main ==&lt;br /&gt;
Root directory for source code related to the application itself, not test code.&lt;br /&gt;
&lt;br /&gt;
== src/test ==&lt;br /&gt;
Directory contains the test source code.&lt;br /&gt;
&lt;br /&gt;
== src/main/java ==&lt;br /&gt;
Obsahuje kompilovatelné .java soubory&lt;br /&gt;
&lt;br /&gt;
Contains the Java code for the application itself.&lt;br /&gt;
&lt;br /&gt;
Contains the deliverable Java sourcecode for the project.&lt;br /&gt;
&lt;br /&gt;
== src/main/resources ==&lt;br /&gt;
Obsahuje další soubory, například konfigurační XML , (? HTML šablóny) atď.&lt;br /&gt;
&lt;br /&gt;
Contains the deliverable resources for the project, such as property files.&lt;br /&gt;
&lt;br /&gt;
== src/test/java ==&lt;br /&gt;
Contains Java code for the tests.&lt;br /&gt;
&lt;br /&gt;
Contains the testing Java sourcecode (JUnit or TestNG test cases, for example) for the project.&lt;br /&gt;
&lt;br /&gt;
== src/test/resources ==&lt;br /&gt;
Contains resources necessary for testing.&lt;br /&gt;
&lt;br /&gt;
Obsahuje konfigurační soubory pro testy.&lt;br /&gt;
&lt;br /&gt;
== target ==&lt;br /&gt;
Created by Maven. It contains all the compiled classes, JAR files etc.&lt;br /&gt;
&lt;br /&gt;
When executing the mvn clean command, Maven would clean the target directory.&lt;br /&gt;
&lt;br /&gt;
== webapp ==&lt;br /&gt;
Directory contains Java web application, if the project is a web application.&lt;br /&gt;
&lt;br /&gt;
The webapp directory is the root directory of the web application. The webapp directory contains the WEB-INF directory.&lt;br /&gt;
&lt;br /&gt;
== Referencie ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Kubini</name></author>
	</entry>
	<entry>
		<id>https://informatika.kubini.sk/index.php?title=Apache_Maven&amp;diff=10</id>
		<title>Apache Maven</title>
		<link rel="alternate" type="text/html" href="https://informatika.kubini.sk/index.php?title=Apache_Maven&amp;diff=10"/>
		<updated>2023-02-09T22:49:29Z</updated>

		<summary type="html">&lt;p&gt;Kubini: Obsah stránky nahradený textom „== Adresáre v Apache Maven ==“&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Adresáre v Apache Maven ==&lt;/div&gt;</summary>
		<author><name>Kubini</name></author>
	</entry>
	<entry>
		<id>https://informatika.kubini.sk/index.php?title=Standard_Directory_Layout_(Apache_Maven)&amp;diff=9</id>
		<title>Standard Directory Layout (Apache Maven)</title>
		<link rel="alternate" type="text/html" href="https://informatika.kubini.sk/index.php?title=Standard_Directory_Layout_(Apache_Maven)&amp;diff=9"/>
		<updated>2023-02-09T22:46:33Z</updated>

		<summary type="html">&lt;p&gt;Kubini: Vytvorená stránka „== Nastavenie == If you follow the directory structure, you do not need to specify the directories of your source code, test code, resource files, etc. in your POM file. &amp;lt;ref name=&amp;quot;maven_standard_directory_layout&amp;quot;&amp;gt;Maven – Introduction to the Standard Directory Layout. Maven – Welcome to Apache Maven [online]. Dostupné z: https://maven.apache.org/guides/introduction/introduction-to-the-standard-directory-layout.html&amp;lt;/ref&amp;gt;  == Štruktúra == &amp;lt;pre&amp;gt; - src -- main…“&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Nastavenie ==&lt;br /&gt;
If you follow the directory structure, you do not need to specify the directories of your source code, test code, resource files, etc. in your POM file. &amp;lt;ref name=&amp;quot;maven_standard_directory_layout&amp;quot;&amp;gt;Maven – Introduction to the Standard Directory Layout. Maven – Welcome to Apache Maven [online]. Dostupné z: https://maven.apache.org/guides/introduction/introduction-to-the-standard-directory-layout.html&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Štruktúra ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
- src&lt;br /&gt;
-- main&lt;br /&gt;
----- java&lt;br /&gt;
----- resources&lt;br /&gt;
----- webapp&lt;br /&gt;
- test&lt;br /&gt;
----- java&lt;br /&gt;
----- resources&lt;br /&gt;
- target&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Project home ==&lt;br /&gt;
Contains the pom.xml and all subdirectories.&lt;br /&gt;
&lt;br /&gt;
== src ==&lt;br /&gt;
Root directory of source code and test code.&lt;br /&gt;
&lt;br /&gt;
== src/main ==&lt;br /&gt;
Root directory for source code related to the application itself, not test code.&lt;br /&gt;
&lt;br /&gt;
== src/test ==&lt;br /&gt;
Directory contains the test source code.&lt;br /&gt;
&lt;br /&gt;
== src/main/java ==&lt;br /&gt;
Obsahuje kompilovatelné .java soubory&lt;br /&gt;
&lt;br /&gt;
Contains the Java code for the application itself.&lt;br /&gt;
&lt;br /&gt;
Contains the deliverable Java sourcecode for the project.&lt;br /&gt;
&lt;br /&gt;
== src/main/resources ==&lt;br /&gt;
Obsahuje další soubory, například konfigurační XML , (? HTML šablóny) atď.&lt;br /&gt;
&lt;br /&gt;
Contains the deliverable resources for the project, such as property files.&lt;br /&gt;
&lt;br /&gt;
== src/test/java ==&lt;br /&gt;
Contains Java code for the tests.&lt;br /&gt;
&lt;br /&gt;
Contains the testing Java sourcecode (JUnit or TestNG test cases, for example) for the project.&lt;br /&gt;
&lt;br /&gt;
== src/test/resources ==&lt;br /&gt;
Contains resources necessary for testing.&lt;br /&gt;
&lt;br /&gt;
Obsahuje konfigurační soubory pro testy.&lt;br /&gt;
&lt;br /&gt;
== target ==&lt;br /&gt;
Created by Maven. It contains all the compiled classes, JAR files etc.&lt;br /&gt;
&lt;br /&gt;
When executing the mvn clean command, Maven would clean the target directory.&lt;br /&gt;
&lt;br /&gt;
== webapp ==&lt;br /&gt;
Directory contains Java web application, if the project is a web application.&lt;br /&gt;
&lt;br /&gt;
The webapp directory is the root directory of the web application. The webapp directory contains the WEB-INF directory.&lt;br /&gt;
&lt;br /&gt;
== Referencie ==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Kubini</name></author>
	</entry>
	<entry>
		<id>https://informatika.kubini.sk/index.php?title=Apache_Maven&amp;diff=8</id>
		<title>Apache Maven</title>
		<link rel="alternate" type="text/html" href="https://informatika.kubini.sk/index.php?title=Apache_Maven&amp;diff=8"/>
		<updated>2023-02-09T22:33:49Z</updated>

		<summary type="html">&lt;p&gt;Kubini: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Adresáre v Apache Maven ==&lt;br /&gt;
=== Štruktúra ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
- src&lt;br /&gt;
-- main&lt;br /&gt;
----- java&lt;br /&gt;
----- resources&lt;br /&gt;
----- webapp&lt;br /&gt;
- test&lt;br /&gt;
----- java&lt;br /&gt;
----- resources&lt;br /&gt;
- target&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you follow the directory structure, you do not need to specify the directories of your source code, test code, resource files, etc. in your POM file. &amp;lt;ref name=&amp;quot;maven_standard_directory_layout&amp;quot;&amp;gt;Maven – Introduction to the Standard Directory Layout. Maven – Welcome to Apache Maven [online]. Dostupné z: https://maven.apache.org/guides/introduction/introduction-to-the-standard-directory-layout.html&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Štruktúra ===&lt;/div&gt;</summary>
		<author><name>Kubini</name></author>
	</entry>
	<entry>
		<id>https://informatika.kubini.sk/index.php?title=Java_(programovac%C3%AD_jazyk)&amp;diff=7</id>
		<title>Java (programovací jazyk)</title>
		<link rel="alternate" type="text/html" href="https://informatika.kubini.sk/index.php?title=Java_(programovac%C3%AD_jazyk)&amp;diff=7"/>
		<updated>2023-02-09T22:24:58Z</updated>

		<summary type="html">&lt;p&gt;Kubini: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Časti&lt;br /&gt;
* [[Apache Maven]]&lt;/div&gt;</summary>
		<author><name>Kubini</name></author>
	</entry>
	<entry>
		<id>https://informatika.kubini.sk/index.php?title=Apache_Maven&amp;diff=6</id>
		<title>Apache Maven</title>
		<link rel="alternate" type="text/html" href="https://informatika.kubini.sk/index.php?title=Apache_Maven&amp;diff=6"/>
		<updated>2023-02-09T22:24:37Z</updated>

		<summary type="html">&lt;p&gt;Kubini: Vytvorená prázdna stránka&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Kubini</name></author>
	</entry>
	<entry>
		<id>https://informatika.kubini.sk/index.php?title=Java_(programovac%C3%AD_jazyk)&amp;diff=5</id>
		<title>Java (programovací jazyk)</title>
		<link rel="alternate" type="text/html" href="https://informatika.kubini.sk/index.php?title=Java_(programovac%C3%AD_jazyk)&amp;diff=5"/>
		<updated>2023-02-09T19:02:49Z</updated>

		<summary type="html">&lt;p&gt;Kubini: Vytvorená stránka „Časti * Apache Maven“&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Časti&lt;br /&gt;
* Apache Maven&lt;/div&gt;</summary>
		<author><name>Kubini</name></author>
	</entry>
	<entry>
		<id>https://informatika.kubini.sk/index.php?title=Hlavn%C3%A1_str%C3%A1nka&amp;diff=4</id>
		<title>Hlavná stránka</title>
		<link rel="alternate" type="text/html" href="https://informatika.kubini.sk/index.php?title=Hlavn%C3%A1_str%C3%A1nka&amp;diff=4"/>
		<updated>2023-01-28T20:57:01Z</updated>

		<summary type="html">&lt;p&gt;Kubini: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Časti wiki&lt;br /&gt;
* [[Databázy]]&lt;/div&gt;</summary>
		<author><name>Kubini</name></author>
	</entry>
	<entry>
		<id>https://informatika.kubini.sk/index.php?title=Hlavn%C3%A1_str%C3%A1nka&amp;diff=3</id>
		<title>Hlavná stránka</title>
		<link rel="alternate" type="text/html" href="https://informatika.kubini.sk/index.php?title=Hlavn%C3%A1_str%C3%A1nka&amp;diff=3"/>
		<updated>2023-01-28T20:56:40Z</updated>

		<summary type="html">&lt;p&gt;Kubini: Obsah stránky nahradený textom „Domény * Databázy“&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Domény&lt;br /&gt;
* [[Databázy]]&lt;/div&gt;</summary>
		<author><name>Kubini</name></author>
	</entry>
	<entry>
		<id>https://informatika.kubini.sk/index.php?title=Datab%C3%A1zy&amp;diff=2</id>
		<title>Databázy</title>
		<link rel="alternate" type="text/html" href="https://informatika.kubini.sk/index.php?title=Datab%C3%A1zy&amp;diff=2"/>
		<updated>2023-01-28T20:55:33Z</updated>

		<summary type="html">&lt;p&gt;Kubini: Vytvorená prázdna stránka&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Kubini</name></author>
	</entry>
</feed>