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

Commit

Permalink
4th semester: BI-PSI
Browse files Browse the repository at this point in the history
  • Loading branch information
kvetinac97 committed Jul 11, 2021
1 parent ea34ebb commit fca6544
Show file tree
Hide file tree
Showing 5 changed files with 522 additions and 1 deletion.
11 changes: 11 additions & 0 deletions BI-PSI/README.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
= Computer Networks

Got 10 bonus points from semester for activity. +
Found critical bug in homework submission server Bouda. +
Got 90 % from exam, resulting in grade A.

== Semestral task

In Computer Networks, in order to get assessment, we had to develop a simple program for simulating communication with Robots.

I chose to develop it in Kotlin, and you can link:semestral/[see the semestral task here].
Binary file added BI-PSI/grades.pdf
Binary file not shown.
98 changes: 98 additions & 0 deletions BI-PSI/semestral/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>

<artifactId>sem</artifactId>
<groupId>cz.fit.cvut.wrzecond</groupId>
<version>1.0.0</version>
<packaging>jar</packaging>

<name>sem</name>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<kotlin.code.style>official</kotlin.code.style>
<kotlin.compiler.jvmTarget>1.8</kotlin.compiler.jvmTarget>
</properties>

<repositories>
<repository>
<id>mavenCentral</id>
<url>https://repo1.maven.org/maven2/</url>
</repository>
</repositories>

<build>
<sourceDirectory>src/main/kotlin</sourceDirectory>
<testSourceDirectory>src/test/kotlin</testSourceDirectory>
<plugins>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<version>1.4.31</version>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>test-compile</id>
<phase>test-compile</phase>
<goals>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>MainKt</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
<version>1.4.31</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines-core</artifactId>
<version>1.4.3</version>
</dependency>
</dependencies>

</project>
Loading

0 comments on commit fca6544

Please sign in to comment.