欧美在线专区-欧美在线伊人-欧美在线一区二区三区欧美-欧美在线一区二区三区-pornodoxxx中国妞-pornodoldoo欧美另类

代寫159.251 Software Design and Construction

代寫 Massey University159.251 - Software Design and ConstructionAssignment 1Deadline and Late Submission PenaltiesYou must submit your final work using the stream submission system no later than 9 October2024 at 11.59 pm. The penalty is 20% deducted from the total possible mark for every daydelay in submission (one day late – out of 80%, two days late then out of 60% … etc.).You are expected to manage your source code and other deliverables using version control.“The Cat Ate My Source Code” is not a valid excuse for a late submission.Contribution to Final Grade of the Course: 22%Please read carefully, as there are many parts that you should be aware of.OverviewYou are to work in self-selected pairs (i.e., select your teammate) to create the programdefined below. You will need to use git to manage source code contribution and integrationbetween the two members. All project issues and changes should be tracked using an issuetracker (set up within your repository).Note: Both group members will receive the same mark unless it is clear that the work ispredominantly that of a single person. These will be sorted out on a case-by-case basis. Thepartition of the work is entirely up to you and your project partner.Part of this assignment is to become familiar with using git for version control. You must useGitHub for this assignment, and the repository must be private.IMPORTANT: use the following conventional name for your repository: 251-Assignment1-2024-FirstName1-FirstName2. For example, if the first student is Sarah and the secondstudent is Li, then the repository name should be (251-Assignment1-2024-Sarah-Li).After submitting your assignment on Stream, you must send an invitation to your GitHubrepository to one of our markers. After the submission is completed, one of the markerswill contact you to request access to your repository.Tools Required● IDE independent: You may develop this in any IDE or code editor you like! The toolsincluded here are available for major IDEs and Maven dependencies.● Git and GitHub(for version control)● GitHub Issue Tracker (for log changes and bugs)● Maven (for dependency management and process automation)● A code metrics tool● Docker for packaging● PMD (for code quality check)● other libraries to perform the different functionalities (you are free to search and useany library that will help in implementing any of the functionalities).Tasks1) Developing a text editor program using Java – see details below.2) Source code and version control:a) create and maintain a git repository on your local machine for your source codeand on a remote repository to provide a central server accessible to bothmembers and also accessible for marking.b) keep an audit trail of commits in the git repository. These will inform part ofthe marking.c) make sure that you actively (almost daily) use git features such as branchingand merging (not only on the last day before submission!).d) write your configurations in YAML file. You must submit at least oneconfiguration file that works with the text editor. This could be a file with thedefault parameters for the text editor, such as the default text format or defaultfont colour.3) Log changes and bugs: keep track of changes and issues – use an issue tracker aspart of your version control. Please use the same issue tracker that is provided by yourGit project hosting site (i.e., the “issues” feature in GitHub). This has to be activelyused!4) Automation: automate your process so it is easier to load files and generate reports.Use Maven to declare all dependencies. If you are using any external libraries, do notinclude any jar files with your submission but add them as Maven dependencies! Also,don’t try to change your Maven files into a different format. The pom file should be anXML file.Build those Maven build tasks in your Continuous Integration (CI) pipeline using GitHubActions. Make sure that the configuration (YAML) file is correctly added.5) Readability: ensure you write clean code, correctly handle exceptions, and addcomments to explain your code. Make your code “human-readable!”.6) Quality: check the quality of your code and outputs2a) use code quality tools to report metrics data of your program. The metrics reportgenerated from your code should be submitted. The process should beautomated and included in your Maven dependencies (see Section 2 below).b) (Bonus) Write unit tests using JUnit to test (at least) the following functionalities:open, save and search (see details below).7) Deployment: package your project and deploy it into a Docket container (a Windowsor Linux container). This must allow the markers to run the Maven project from theDocker container (without the need to install or configure the environment). Make sureto include your Docker file with your project, and to include details on how to load andrun your container in the README file.Make your own text editor!1. The Text EditorYour program is basically a standard text editor (or text processor) – something similar toNotepad, Atom, or Geany. The editor should allow you to write text on it using standard textencoding formats (i.e., ASCII/UTF-8). You should develop this program in Java. Note: astandard text file (mostly) does not need any additional metadata files to assist the reader ininterpretation,The main functionalities of the text editor are:- Full GUI access to the application- Create a menu of options at the top of the editor, similar to the followingThe menu should (at least) include the following sub-menus: File, Search, View, and Help- Implement the following functionalities:o New function: to create a new (fresh) window.o Open function: to read other text files (just standard .txt files). This shouldallow users to navigate the file system to select\search for a file.o The ability to read OpenDocument Text (.odt) files. This is part of the Openfunction.o Save function: save text output into .txt file format. This should allow users tonavigate the file system to save the file in a selected drive/location.o Search: search for text within the screen (this will be tested based on a singleword)o Exit: to quit the program – close all windows.o Select text, Copy, Paste, and Cut (SCPC) capabilities.o Time and Date (T&D): retrieve the current time and data from the OS andplace it at the top of the editor's page.o About: display the names of both team members and a brief message in apopup message box.o Print function: allow your editor to print text by connecting it to the local printerin your machine (similar to any other text editor you have used).3Harder functions● ability to read source code files such as .java, .py, .cpp or similar. differentsyntax should be shown in different colours. For example:● reading and displaying other file formats beyond txt and source code files:mainly, Rich Text Format (RTF) and OpenDocument Text (ODT) format.Hint: you can use an external library to do so.● include a PDF conversion function in your editor, so the file can be saved inPDF format (for standard text files). Use an external library for this, such asApache PDFBox.Note: There is no specific requirement regarding which GUI library you should use, but try tomake your program as cool as possible!2. Code Quality and ManagementOnce development is done, you must report metrics data using a metrics tool. You may usea software metrics tool (see some examples above). Code quality report from PMD shouldalso be submitted with your assignment.a) generate a metrics data report from any software metrics tool (see below for thespecific metrics) and add the report file (.txt or html) to $project$/reports/metricsb) create a new maven goal called “pmd” that should generate a metrics report usingPMD (see below for the specific metrics) and add the report files to$project$/reports/pmd.● Code Size (per class): Lines of Code (LOC) and Number of Methods (NOM)● Code Complexity: Cyclomatic Complexity and code coupling metrics(Coupling Between Objects (CBO) OR Efferent Coupling).● Code Quality Report from PMD. Use only Java Basic rules such as NamingConvention for classes and variables (extract the full report and include it withyour submission).Submitting your assignment45Submission must be completed on Stream using the Assignment submission site.Share your program on your private GitHub repository with us by sending a shareinvitation to the user. This is to track commits on your Git repository.Include a README file in the top level of the projectThe Readme.md is a file with a Markdown syntax (this should be correctly formattedas a markdown) that contains:1. the names & IDs of BOTH MEMBERS of the group.2. clear instructions on how to run your program and if there are any otherdirectories, what they contain.3. for each student, a couple of the most significant git commit IDs show thework of each individual member of the group.4. a link to your private GitHub repository. A marker will contact you aftersubmission to request access to the repository. Note: there will be a penalty ifthe repository is found to be public.Who submits what?Only one member of a group should submit a complete project, the other just submitthe Readme.md file:● member A: submit (through Stream) a single compressed (e.g., zip or tar) filethat contains the assignment (Maven project files and other configurationfiless without the /target directory)o name the compressed file with both members’FirstName_LastName and ID numbers (e.g. Xiaofeng_Liu-87878787-Susan_Jones-01010101.zip)● member B: submit just the README.md file containing your name and that ofthe partner who is submitting the zip/tar file. This is so Stream knows thatyou've submitted something.Markdown Quick guidehttps://docs.github.com/en/get-started/writing-on-github/getting-started-with-writingand-formatting-on-github/basic-writing-and-formatting-syntax6Assessment

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp

Popular articles

主站蜘蛛池模板: 91国语精品自产拍在线观看一| 大学生日嘛批1| mm131美女做爽爽爱视频| 黄色三级电影免费观看| 日本在线观看一级高清片| 妞干网在线观看视频| 丰乳娇妻镇| 免费网站看v片在线香蕉| 豪妇荡乳1一5白玉兰| 国产嫩草影院在线观看| 波多野结衣在线观看中文字幕| 把英语课代表按在地上c网站| 推拿电影完整未删减版资源| 再深点灬舒服灬太大了np视频| 色播在线电影| 特区爱奴在线观看| 亚洲国产成人久久| 按摩xxxx全套| 国产韩国精品一区二区三区 | 日韩毛片| 国产v在线播放| 妞干网免费视频观看| 男按摩师电影| 亚洲日产欧| 成人性生活免费视频| 成人综合激情另类小说| 88国产精品欧美一区二区三区| 欧美人与性动交α欧美精品| 男人天堂网www| 夜夜躁狠去2021| 国产精品久久久久9999高清| 高清对白精彩国产国语| 性芭蕾k8经典| 国产精品成人va在线观看| 狠狠色噜噜狠狠狠合久| 三级黄色片在线观看| 欧美激情一区二区三区在线| 悠悠色影院| 久久99久久99精品免观看| 一级红色片| 国产精品igao视频|